Compare commits
No commits in common. "public" and "main" have entirely different histories.
32
.forgejo/workflows/cleanup.yaml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
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: Pages repo pull
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: pages
|
||||||
|
- 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,27 +0,0 @@
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- 'public'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
deploy:
|
|
||||||
runs-on: x86_64
|
|
||||||
container: alpine:latest
|
|
||||||
env:
|
|
||||||
GIT_SSH_COMMAND: ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
|
|
||||||
steps:
|
|
||||||
- name: Environment setup
|
|
||||||
run: |
|
|
||||||
apk add git nodejs openssh-client-common openssh-client-default
|
|
||||||
- name: Start ssh-agent
|
|
||||||
uses: https://github.com/webfactory/ssh-agent@v0.9.0
|
|
||||||
with:
|
|
||||||
ssh-private-key: ${{ secrets.PAGES_PRIVKEY }}
|
|
||||||
- name: Repo pull
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Website upload
|
|
||||||
run: |
|
|
||||||
git remote set-url origin ${{ vars.PAGES_TARGET }}
|
|
||||||
git push -f
|
|
41
.forgejo/workflows/pages.yaml
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
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 imagemagick-perlmagick imagemagick imagemagick-jpeg findutils bash imagemagick-webp
|
||||||
|
- name: Repo pull
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
- name: Pages repo pull
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: pages
|
||||||
|
path: public
|
||||||
|
- name: Render website
|
||||||
|
run: ikiwiki --setup ikiwiki.setup
|
||||||
|
- name: Website upload
|
||||||
|
run: |
|
||||||
|
cp .pages-domains public/.domains
|
||||||
|
cp .pages-redirect public/_redirects
|
||||||
|
git log -1 --pretty=%B > commit.txt
|
||||||
|
cd public
|
||||||
|
find -name 'index.html' -type 'l' -delete
|
||||||
|
find -name 'index.fr.html' -exec bash -c 'ln -s "${0/.*\/}" "${0/.fr/}"' {} \;
|
||||||
|
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
|
47
.forgejo/workflows/preview.yaml
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
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 imagemagick-perlmagick imagemagick imagemagick-jpeg findutils bash imagemagick-webp
|
||||||
|
echo "GITHUB_PR_NAME=$(curl -Ls ${{ github.server_url }}/api/v1/repos/${{ github.repository }}/pulls/${{ github.ref_name }} -H 'accept: application/json' -H 'Authorization: token ${{ secrets.FORGEJO_TOKEN }}' | jq .title | tr ' ' '-' | tr -d ':' | tr -d '"' | tr '[:upper:]' '[:lower:]' | tr '/' '-' | tr -d ',')" >> $GITHUB_ENV
|
||||||
|
- name: Repo pull
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 1
|
||||||
|
- name: Public repo pull
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
ref: pages
|
||||||
|
path: public
|
||||||
|
- 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
|
||||||
|
cd $GITHUB_PR_NAME
|
||||||
|
find -name 'index.html' -type 'l' -delete
|
||||||
|
find -name 'index.fr.html' -exec bash -c 'ln -s "${0/.*\/}" "${0/.fr/}"' {} \;
|
||||||
|
- name: Website upload
|
||||||
|
run: |
|
||||||
|
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
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
.ikiwiki
|
||||||
|
public/
|
||||||
|
tools/http-server/
|
1
.pages-domains
Normal file
|
@ -0,0 +1 @@
|
||||||
|
www.ilot.io
|
0
.pages-redirect
Normal file
28
LICENSE
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
The Mastodon comments mechanism is by Carl Schwan CC-BY-SA:
|
||||||
|
|
||||||
|
https://carlschwan.eu/2020/12/29/adding-comments-to-your-static-blog-with-mastodon/
|
||||||
|
|
||||||
|
The file in templates/, bootstrap.min.css, bootstrap.min.js, and local.css
|
||||||
|
are derived from bootstrap. They and all remaining files are licensed under
|
||||||
|
the MIT license:
|
||||||
|
|
||||||
|
Copyright (c) 2011-2015 Twitter, Inc
|
||||||
|
Copyright (c) 2009-2015 Julian Andres Klode
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
81
README.md
|
@ -1,3 +1,82 @@
|
||||||
# ilot.io
|
# ilot.io
|
||||||
|
Upstream: https://forge.ilot.io/ilot/ilot.io
|
||||||
|
|
||||||
This branch is the output of ikiwiki, please do not modify manually.
|

|
||||||
|

|
||||||
|
|
||||||
|
## 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`](.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 ilot.io repo.
|
||||||
|
|
||||||
|
2. Checkout the forked repository.
|
||||||
|
|
||||||
|
- `git clone ssh://git@forge.ilot.io/$USER/ilot.io`
|
||||||
|
- `cd ilot.io`
|
||||||
|
|
||||||
|
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/
|
||||||
|
|
6
bootstrap.min.css
vendored
7
bootstrap.min.js
vendored
237
bootstrap.local.css → css/bootstrap.local.css
vendored
|
@ -1,56 +1,11 @@
|
||||||
/* Color palette */
|
/* Color palette */
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
/* Purple */
|
--bs-light-rgb: 248, 248, 248;
|
||||||
--dark-purple: #3a2354;
|
|
||||||
--medium-purple: #56347c; /* logo */
|
|
||||||
--light-purple: #9f73d2;
|
|
||||||
--background-purple: #f3edf9;
|
|
||||||
|
|
||||||
/* Green */
|
|
||||||
--darker-green: #014d00;
|
|
||||||
--dark-green: #3b833a;
|
|
||||||
--medium-dark-green: #53b351;
|
|
||||||
--medium-light-green: #73d171; /* buttons */
|
|
||||||
--background-green: #a8ffa0;
|
|
||||||
|
|
||||||
/* Gray */
|
|
||||||
--dark-gray: #393a35;
|
|
||||||
--medium-dark-gray: #58595b;
|
|
||||||
--medium-light-gray: #b5b7b9;
|
|
||||||
--light-gray: #dadbdc;
|
|
||||||
--background-gray: #f0f1f2;
|
|
||||||
|
|
||||||
/* Misc */
|
|
||||||
--yellow: #ffd500;
|
|
||||||
--light-yellow: #ffec8c;
|
|
||||||
--background-yellow: #fffff0;
|
|
||||||
--red: #ef1f31;
|
|
||||||
|
|
||||||
/* Shadows */
|
|
||||||
--banner-button-shadow: 1px 1px 1px black, 2px 2px 5px var(--dark-gray), inset 1px 1px 1px var(--background-green);
|
|
||||||
--green-button-shadow: 1px 1px 1px var(--medium-dark-gray), 2px 2px 5px var(--light-gray), inset 1px 1px 1px var(--background-green);
|
|
||||||
--gray-button-shadow: 1px 1px 1px black, 2px 2px 5px var(--dark-gray), inset 1px 1px 1px var(--background-gray);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
/* Sticky footer styles
|
--bs-link-color: #337ab7;
|
||||||
-------------------------------------------------- */
|
|
||||||
html {
|
|
||||||
position: relative;
|
|
||||||
min-height: 100%;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
/* Margin bottom by footer height */
|
|
||||||
margin-bottom: 60px;
|
|
||||||
}
|
|
||||||
.footer {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 0;
|
|
||||||
width: 100%;
|
|
||||||
/* Set the fixed height of the footer here */
|
|
||||||
height: 60px;
|
|
||||||
background-color: #f5f5f5;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -58,22 +13,14 @@ body {
|
||||||
-------------------------------------------------- */
|
-------------------------------------------------- */
|
||||||
/* Not required for template or sticky footer method. */
|
/* Not required for template or sticky footer method. */
|
||||||
|
|
||||||
body > .container {
|
main > .container {
|
||||||
padding: 60px 15px 15px;
|
padding: 60px 15px 15px;
|
||||||
}
|
}
|
||||||
.container .text-muted {
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pagedate {
|
.pagedate {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.footer > .container {
|
|
||||||
padding-right: 15px;
|
|
||||||
padding-left: 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
@ -93,33 +40,6 @@ code {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* comments fixup */
|
|
||||||
.comment {
|
|
||||||
border: none;
|
|
||||||
padding: 1em;
|
|
||||||
margin: 1em;
|
|
||||||
background: #f3f3f3;
|
|
||||||
}
|
|
||||||
.mastodon-comment {
|
|
||||||
display: flex;
|
|
||||||
}
|
|
||||||
/* mastodon posts have a span to hide the scheme and post id, use it */
|
|
||||||
.mastodon-comment-content span.invisible {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.mastodon-comment .avatar img {
|
|
||||||
margin-right: 1rem;
|
|
||||||
}
|
|
||||||
.mastodon-comment span.disabled {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
.mastodon-comment .author {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
.mastodon-comment .author time {
|
|
||||||
font-size: small;
|
|
||||||
}
|
|
||||||
.actions ul {
|
.actions ul {
|
||||||
margin: inherit;
|
margin: inherit;
|
||||||
padding: inherit;
|
padding: inherit;
|
||||||
|
@ -127,30 +47,22 @@ code {
|
||||||
/* list-style-type: none; */
|
/* list-style-type: none; */
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
/* limit main content to ~90 chars per line */
|
/* limit main content to ~90 chars per line */
|
||||||
/* update: practical typography recommends 2-3 alphabets */
|
/* update: practical typography recommends 2-3 alphabets */
|
||||||
#content {
|
#content {
|
||||||
max-width: 35em; /* this is 2.5 alphabets with Charter */
|
max-width: 35em; /* this is 2.5 alphabets with Charter */
|
||||||
|
margin-top: 15px
|
||||||
}
|
}
|
||||||
|
|
||||||
/* limit header as well otherwise logo is out of whack without sidebar */
|
/* limit header as well otherwise logo is out of whack without sidebar */
|
||||||
.navbar-fixed-top .container {
|
.fixed-top .container-fluid {
|
||||||
max-width: 55em;
|
max-width: 55em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.navbar .selflink {
|
|
||||||
display: block;
|
|
||||||
padding: 15px 15px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar .in {
|
|
||||||
padding-top: 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navbar .collapsing {
|
|
||||||
padding-top: 9px;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* some hacking at typefaces to get some fresh zest in here
|
/* some hacking at typefaces to get some fresh zest in here
|
||||||
* fallbacks from:
|
* fallbacks from:
|
||||||
* https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows
|
* https://en.wikipedia.org/wiki/List_of_typefaces_included_with_Microsoft_Windows
|
||||||
|
@ -217,12 +129,12 @@ blockquote {
|
||||||
/* enlarge body point size for charter for larger displays */
|
/* enlarge body point size for charter for larger displays */
|
||||||
@media (min-device-width: 750px) {
|
@media (min-device-width: 750px) {
|
||||||
body {
|
body {
|
||||||
font-size: 20px;
|
font-size: 18px;
|
||||||
line-height: 1.3; /* default in FF is ~1.48, try seems a bit to sparse */
|
line-height: 1.3; /* default in FF is ~1.48, try seems a bit to sparse */
|
||||||
}
|
}
|
||||||
/* to match the other bootstrap workaround, below */
|
/* to match the other bootstrap workaround, below */
|
||||||
blockquote {
|
blockquote {
|
||||||
font-size: 20px;
|
font-size: 18px;
|
||||||
}
|
}
|
||||||
/* UI elements should be a little less intrusive */
|
/* UI elements should be a little less intrusive */
|
||||||
.navbar, .footer {
|
.navbar, .footer {
|
||||||
|
@ -449,33 +361,136 @@ header h1::before {
|
||||||
/* Language switchers */
|
/* Language switchers */
|
||||||
|
|
||||||
.language-switcher {
|
.language-switcher {
|
||||||
display: block;
|
font-size: 14px;
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
color: #333;
|
color: #333;
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
margin-bottom: -4px;
|
|
||||||
margin-left: -3px;
|
|
||||||
margin-top: 9px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.language-switcher:hover {
|
.language-switcher:hover {
|
||||||
background: #e6e6e6;
|
background: #e6e6e6;
|
||||||
color: #333;
|
|
||||||
border-color: #ccc;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sign-in buttons */
|
/* Sign-in buttons */
|
||||||
|
|
||||||
.sign-in {
|
.sign-in:hover {
|
||||||
|
background: #e6e6e6;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Footer */
|
||||||
|
|
||||||
|
.footer ul {
|
||||||
|
margin: inherit;
|
||||||
|
padding: 0;
|
||||||
|
height: inherit;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer h5 {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer li a {
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer li {
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer p {
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Listmonk form */
|
||||||
|
|
||||||
|
.listmonk-form {
|
||||||
|
display: table;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listmonk-form .t {
|
||||||
|
display: table-cell;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listmonk-form a {
|
||||||
|
color: #777;
|
||||||
|
text-decoration-line: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.listmonk-form .t > input {
|
||||||
|
width: 100%;
|
||||||
background: #f8f8f8;
|
background: #f8f8f8;
|
||||||
color: #333;
|
color: #777;
|
||||||
|
text-align: left;
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
margin-top: 9px;
|
}
|
||||||
|
|
||||||
|
.listmonk-form button {
|
||||||
|
background: #f8f8f8;
|
||||||
|
color: #777;
|
||||||
|
border-color: #ccc;
|
||||||
|
margin-top: -2px;
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sign-in:hover {
|
.listmonk-form button:hover {
|
||||||
background: #e6e6e6;
|
background: #e6e6e6;
|
||||||
color: #333;
|
color: #777;
|
||||||
border-color: #ccc;
|
border-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
596
css/style.css
Normal file
|
@ -0,0 +1,596 @@
|
||||||
|
/* ikiwiki style sheet */
|
||||||
|
|
||||||
|
/* Note that instead of modifying this style sheet, you can instead edit
|
||||||
|
* local.css and use it to override or change settings in this one.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* html5 compat */
|
||||||
|
article,aside,details,figcaption,figure,
|
||||||
|
footer,header,hgroup,menu,nav,section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.header, header.header {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 140%;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 1em;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inlineheader .author {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 112%;
|
||||||
|
font-weight: bold;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.actions ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 6px .4em;
|
||||||
|
height: 1em;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
.actions li {
|
||||||
|
display: inline;
|
||||||
|
padding: .2em;
|
||||||
|
}
|
||||||
|
.pageheader .actions ul {
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inlinepage .actions ul {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
#otherlanguages ul {
|
||||||
|
margin: 0;
|
||||||
|
padding: 6px;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
#otherlanguages li {
|
||||||
|
display: inline;
|
||||||
|
padding: .2em .4em;
|
||||||
|
}
|
||||||
|
.pageheader #otherlanguages {
|
||||||
|
border-bottom: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inlinecontent,
|
||||||
|
.inlineenclosure {
|
||||||
|
margin-top: .4em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagefooter,
|
||||||
|
.inlinefooter,
|
||||||
|
.comments {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pageinfo {
|
||||||
|
margin: 1em 0;
|
||||||
|
border-top: 1px solid #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inlinepage .tags {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mapparent {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img caption {
|
||||||
|
font-size: 80%;
|
||||||
|
caption-side: bottom;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.img {
|
||||||
|
margin: 0.5ex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.align-left {
|
||||||
|
float:left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.align-right {
|
||||||
|
float:right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#backlinks {
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
#searchform {
|
||||||
|
display: inline;
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#editcontent {
|
||||||
|
width: 98%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.editcontentdiv {
|
||||||
|
width: auto;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
border-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.recentchanges {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
overflow: auto;
|
||||||
|
width: auto;
|
||||||
|
clear: none;
|
||||||
|
background: #eee;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
.recentchanges .metadata {
|
||||||
|
padding: 0px 0.5em;
|
||||||
|
}
|
||||||
|
.recentchanges .changelog {
|
||||||
|
font-style: italic;
|
||||||
|
clear: both;
|
||||||
|
display: block;
|
||||||
|
padding: 1px 2px;
|
||||||
|
background: white !important;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
.recentchanges .desc {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.recentchanges .diff {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.recentchanges .committer {
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
width: 40%;
|
||||||
|
}
|
||||||
|
.recentchanges .committype {
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
width: 5%;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
.recentchanges .changedate {
|
||||||
|
float: left;
|
||||||
|
margin: 0;
|
||||||
|
width: 35%;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
.recentchanges .pagelinks,
|
||||||
|
.recentchanges .revert {
|
||||||
|
float: right;
|
||||||
|
margin: 0;
|
||||||
|
width: 60%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blogform, #blogform {
|
||||||
|
padding: 10px 10px;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
background: #eee;
|
||||||
|
color: black !important;
|
||||||
|
width: auto;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.inlinepage {
|
||||||
|
padding: 10px 10px;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pagedate,
|
||||||
|
.pagelicense,
|
||||||
|
.pagecopyright {
|
||||||
|
font-style: italic;
|
||||||
|
display: block;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.archivepagedate {
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
.archivepage {
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
color: #C00;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar {
|
||||||
|
width: 20ex;
|
||||||
|
float: right;
|
||||||
|
margin-left: 4px;
|
||||||
|
margin-bottom: 4px;
|
||||||
|
margin-top: -1px;
|
||||||
|
padding: 0ex 2ex;
|
||||||
|
background: white;
|
||||||
|
border: 1px solid black;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
hr.poll {
|
||||||
|
height: 10pt;
|
||||||
|
color: white !important;
|
||||||
|
background: #eee;
|
||||||
|
border: 2px solid black;
|
||||||
|
}
|
||||||
|
div.poll {
|
||||||
|
margin-top: 1ex;
|
||||||
|
margin-bottom: 1ex;
|
||||||
|
padding: 1ex 1ex;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.color {
|
||||||
|
padding: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.comment-header,
|
||||||
|
.microblog-header {
|
||||||
|
font-style: italic;
|
||||||
|
margin-top: .3em;
|
||||||
|
}
|
||||||
|
.comment .author,
|
||||||
|
.microblog .author {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.comment-subject {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.comment-avatar {
|
||||||
|
float: right;
|
||||||
|
}
|
||||||
|
.comment {
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
padding: 3px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.progress {
|
||||||
|
margin-top: 1ex;
|
||||||
|
margin-bottom: 1ex;
|
||||||
|
border: 1px solid #888;
|
||||||
|
width: 400px;
|
||||||
|
background: #eee;
|
||||||
|
color: black !important;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
div.progress-done {
|
||||||
|
background: #ea6 !important;
|
||||||
|
color: black !important;
|
||||||
|
text-align: center;
|
||||||
|
padding: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* things to hide in printouts */
|
||||||
|
@media print {
|
||||||
|
.actions { display: none; }
|
||||||
|
.tags { display: none; }
|
||||||
|
.trails { display: none; }
|
||||||
|
.feedbutton { display: none; }
|
||||||
|
#searchform { display: none; }
|
||||||
|
.blogform, #blogform { display: none; }
|
||||||
|
#backlinks { display: none; }
|
||||||
|
.addcomment { display: none; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* infobox template */
|
||||||
|
.infobox {
|
||||||
|
float: right;
|
||||||
|
margin-left: 2ex;
|
||||||
|
margin-top: 1ex;
|
||||||
|
margin-bottom: 1ex;
|
||||||
|
padding: 1ex 1ex;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
background: white;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* notebox template */
|
||||||
|
.notebox {
|
||||||
|
float: right;
|
||||||
|
margin-left: 2ex;
|
||||||
|
margin-top: 1ex;
|
||||||
|
margin-bottom: 1ex;
|
||||||
|
padding: 1ex 1ex;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
width: 25%;
|
||||||
|
background: white;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* popup template and backlinks hiding */
|
||||||
|
.popup {
|
||||||
|
border-bottom: 1px dotted #366;
|
||||||
|
color: #366;
|
||||||
|
}
|
||||||
|
.popup .balloon,
|
||||||
|
.popup .paren,
|
||||||
|
.popup .expand {
|
||||||
|
display: none;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.popup:hover .balloon,
|
||||||
|
.popup:focus .balloon {
|
||||||
|
position: absolute;
|
||||||
|
display: inline;
|
||||||
|
margin: 1em 0 0 -2em;
|
||||||
|
padding: 0.625em;
|
||||||
|
border: 2px solid;
|
||||||
|
background-color: #dee;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* form styling */
|
||||||
|
fieldset {
|
||||||
|
margin: 1ex 0;
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
legend {
|
||||||
|
padding: 0 1ex;
|
||||||
|
}
|
||||||
|
.fb_submit {
|
||||||
|
float: left;
|
||||||
|
margin: 2px 0;
|
||||||
|
}
|
||||||
|
label.block {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
label.inline {
|
||||||
|
display: inline;
|
||||||
|
}
|
||||||
|
input#openid_identifier {
|
||||||
|
background: url(wikiicons/openidlogin-bg.gif) no-repeat;
|
||||||
|
background-color: #fff;
|
||||||
|
background-position: 0 50%;
|
||||||
|
color: #000;
|
||||||
|
padding-left: 18px;
|
||||||
|
}
|
||||||
|
input#searchbox {
|
||||||
|
background: url(wikiicons/search-bg.gif) no-repeat;
|
||||||
|
background-color: #fff;
|
||||||
|
background-position: 100% 50%;
|
||||||
|
color: #000;
|
||||||
|
padding-right: 16px;
|
||||||
|
}
|
||||||
|
/* invalid form fields */
|
||||||
|
.fb_invalid {
|
||||||
|
color: red;
|
||||||
|
background: white !important;
|
||||||
|
}
|
||||||
|
/* required form fields */
|
||||||
|
.fb_required {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* highlight plugin */
|
||||||
|
pre.hl { color:#000000; background-color:#ffffff; }
|
||||||
|
.hl.num { color:#2928ff; }
|
||||||
|
.hl.esc { color:#ff00ff; }
|
||||||
|
.hl.str { color:#ff0000; }
|
||||||
|
.hl.dstr { color:#818100; }
|
||||||
|
.hl.slc { color:#838183; font-style:italic; }
|
||||||
|
.hl.com { color:#838183; font-style:italic; }
|
||||||
|
.hl.dir { color:#008200; }
|
||||||
|
.hl.sym { color:#000000; }
|
||||||
|
.hl.line { color:#555555; }
|
||||||
|
.hl.mark { background-color:#ffffbb; }
|
||||||
|
.hl.kwa { color:#000000; font-weight:bold; }
|
||||||
|
.hl.kwb { color:#830000; }
|
||||||
|
.hl.kwc { color:#000000; font-weight:bold; }
|
||||||
|
.hl.kwd { color:#010181; }
|
||||||
|
|
||||||
|
/* calendar plugin */
|
||||||
|
.month-calendar-day-this-day,
|
||||||
|
.year-calendar-this-month {
|
||||||
|
background-color: #eee;
|
||||||
|
}
|
||||||
|
.month-calendar-day-head,
|
||||||
|
.month-calendar-day-nolink,
|
||||||
|
.month-calendar-day-link,
|
||||||
|
.month-calendar-day-this-day,
|
||||||
|
.month-calendar-day-future {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.month-calendar-arrow A:link,
|
||||||
|
.year-calendar-arrow A:link,
|
||||||
|
.month-calendar-arrow A:visited,
|
||||||
|
.year-calendar-arrow A:visited {
|
||||||
|
text-decoration: none;
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 150%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* outlines */
|
||||||
|
li.L1 { list-style: upper-roman; }
|
||||||
|
li.L2 { list-style: decimal; }
|
||||||
|
li.L3 { list-style: lower-alpha; }
|
||||||
|
li.L4 { list-style: disc; }
|
||||||
|
li.L5 { list-style: square; }
|
||||||
|
li.L6 { list-style: circle; }
|
||||||
|
li.L7 { list-style: lower-roman; }
|
||||||
|
li.L8 { list-style: upper-alpha; }
|
||||||
|
|
||||||
|
/* tag cloud */
|
||||||
|
.pagecloud {
|
||||||
|
float: right;
|
||||||
|
width: 30%;
|
||||||
|
text-align: center;
|
||||||
|
padding: 10px 10px;
|
||||||
|
border: 1px solid #aaa;
|
||||||
|
background: #eee;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
.smallestPC { font-size: 70%; }
|
||||||
|
.smallPC { font-size: 85%; }
|
||||||
|
.normalPC { font-size: 100%; }
|
||||||
|
.bigPC { font-size: 115%; }
|
||||||
|
.biggestPC { font-size: 130%; }
|
||||||
|
|
||||||
|
/* orange feed button */
|
||||||
|
.feedbutton {
|
||||||
|
background: #ff6600;
|
||||||
|
color: white !important;
|
||||||
|
border-left: 1px solid #cc9966;
|
||||||
|
border-top: 1px solid #ccaa99;
|
||||||
|
border-right: 1px solid #993300;
|
||||||
|
border-bottom: 1px solid #331100;
|
||||||
|
padding: 0px 0.5em 0px 0.5em;
|
||||||
|
font-family: sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: small;
|
||||||
|
text-decoration: none;
|
||||||
|
margin-top: 1em;
|
||||||
|
}
|
||||||
|
.feedbutton:hover {
|
||||||
|
color: white !important;
|
||||||
|
background: #ff9900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.FlattrButton {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* login selector */
|
||||||
|
#login_choice {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
#login_input_area {
|
||||||
|
clear: both;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
#login_btns, #login_btns br {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
#login_highlight {
|
||||||
|
background-color: black;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.login_large_btn {
|
||||||
|
padding: 1em 1.5em;
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
margin: 3px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.login_small_btn {
|
||||||
|
padding: 4px 4px;
|
||||||
|
border: 1px solid #DDD;
|
||||||
|
margin: 3px;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
a.login_large_btn:focus {
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
a.login_large_btn:focus {
|
||||||
|
outline-style: none;
|
||||||
|
}
|
||||||
|
.login_selected {
|
||||||
|
border: 4px solid #DDD;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fileupload-content .ui-progressbar {
|
||||||
|
width: 200px;
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
.fileupload-content .ui-progressbar-value {
|
||||||
|
background: url(ikiwiki/images/pbar-ani.gif);
|
||||||
|
}
|
||||||
|
|
||||||
|
.trails {
|
||||||
|
margin-top: 1em;
|
||||||
|
margin-bottom: 1em;
|
||||||
|
}
|
||||||
|
.trail {
|
||||||
|
display: block;
|
||||||
|
clear: both;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trailprev {
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
position: absolute;
|
||||||
|
top: 0%;
|
||||||
|
left: 3%;
|
||||||
|
width: 30%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trailup {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
margin-left: 35%;
|
||||||
|
margin-right: 35%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trailnext {
|
||||||
|
display: block;
|
||||||
|
text-align: right;
|
||||||
|
position: absolute;
|
||||||
|
top: 0%;
|
||||||
|
width: 30%;
|
||||||
|
right: 3%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.trailsep {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* mobile/small-screen-friendly layout */
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
.sidebar {
|
||||||
|
width: auto;
|
||||||
|
float: none;
|
||||||
|
margin-top: 0;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* if the mobile browser is new enough, use flex layout to shuffle
|
||||||
|
* the sidebar to the end */
|
||||||
|
.page {
|
||||||
|
display: -webkit-box;
|
||||||
|
display: -webkit-flexbox;
|
||||||
|
display: -webkit-flex;
|
||||||
|
display: -moz-box;
|
||||||
|
display: -ms-flexbox;
|
||||||
|
display: flex;
|
||||||
|
-webkit-box-orient: vertical;
|
||||||
|
-webkit-flex-direction: tb;
|
||||||
|
-webkit-flex-direction: column;
|
||||||
|
-webkit-flex-flow: column;
|
||||||
|
-ms-flex-direction: column;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
#pageheader {
|
||||||
|
-webkit-box-ordinal-group: -1;
|
||||||
|
-webkit-order: -1;
|
||||||
|
-ms-box-ordinal-group: -1;
|
||||||
|
-ms-flex-order: -1;
|
||||||
|
order: -1;
|
||||||
|
}
|
||||||
|
.sidebar, #footer {
|
||||||
|
-webkit-box-ordinal-group: 1;
|
||||||
|
-webkit-order: 1;
|
||||||
|
-ms-box-ordinal-group: 1;
|
||||||
|
-ms-flex-order: 1;
|
||||||
|
order: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.blogform, #blogform {
|
||||||
|
padding: 4px 4px;
|
||||||
|
}
|
||||||
|
}
|
14
error/404.mdwn
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
[[!meta title="HTTP 404: Not Found"]]
|
||||||
|
|
||||||
|
# HTTP 404
|
||||||
|
## Not Found
|
||||||
|
|
||||||
|
### The page could not be found or you don't have permission to view it.
|
||||||
|
<hr/>
|
||||||
|
The resource that you are attempting to access does not exist or you don't have the necessary permissions to view it.
|
||||||
|
|
||||||
|
Make sure the address is correct and that the page hasn't moved.
|
||||||
|
|
||||||
|
Please contact us using [our support page](https://support.ilot.io) if you think this is a mistake.
|
||||||
|
|
||||||
|
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services
|
10
error/422.mdwn
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
[[!meta title="HTTP 422: Unprocessable content"]]
|
||||||
|
|
||||||
|
# HTTP 422
|
||||||
|
## Unprocessable content
|
||||||
|
|
||||||
|
### The change you requested is rejected.
|
||||||
|
<hr/>
|
||||||
|
Make sure you have access to the thing you tried to changee
|
||||||
|
|
||||||
|
Please contact us using [our support page](https://support.ilot.io) if you think this is a mistake
|
12
error/500.mdwn
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[[!meta title="HTTP 500: Internal Server Error"]]
|
||||||
|
|
||||||
|
# HTTP 500
|
||||||
|
## Internal Server Error
|
||||||
|
|
||||||
|
### We're sorry. Something went wrong on our end
|
||||||
|
<hr/>
|
||||||
|
Try refreshing the page, or going back and attempting the action again.
|
||||||
|
|
||||||
|
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
|
||||||
|
|
||||||
|
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services
|
13
error/502.mdwn
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[[!meta title="HTTP 502: Bad Gateway Error"]]
|
||||||
|
|
||||||
|
# HTTP 502
|
||||||
|
|
||||||
|
## Bad Gateway error
|
||||||
|
|
||||||
|
### We're sorry. ilot is currently unavailable.
|
||||||
|
<hr/>
|
||||||
|
Try refreshing the page, or going back and attempting the action again.
|
||||||
|
|
||||||
|
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
|
||||||
|
|
||||||
|
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services
|
12
error/503.mdwn
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[[!meta title="HTTP 503: Service unavailable"]]
|
||||||
|
|
||||||
|
# HTTP 503
|
||||||
|
## Service unavailable
|
||||||
|
|
||||||
|
### We're sorry. ilot is currently unavailable.
|
||||||
|
<hr/>
|
||||||
|
Try refreshing the page, or going back and attempting the action again.
|
||||||
|
|
||||||
|
Please contact us using [our support page](https://support.ilot.io) if this problem persists.
|
||||||
|
|
||||||
|
You can also check our [network status](https://status.ilot.io) for up-to-date status information on our services
|
BIN
footer.fr.mo
153
footer.fr.po
Normal file
|
@ -0,0 +1,153 @@
|
||||||
|
# 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: ilot.io\n"
|
||||||
|
"POT-Creation-Date: 2025-03-13 17:50-0400\n"
|
||||||
|
"PO-Revision-Date: 2025-04-03 18:43-0400\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: 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.5\n"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "Support"
|
||||||
|
msgstr "Soutien"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[FAQs|https://support.ilot.io/en/hc/706927618]]"
|
||||||
|
msgstr "[[FAQ|https://support.ilot.io/fr/hc/706927618]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Known issues|https://forge.ilot.io/ilot/-/projects/3]]"
|
||||||
|
msgstr "[[Problèmes connus|https://forge.ilot.io/ilot/-/projects/3]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Support ticket|https://support.ilot.io/help/706927618]]"
|
||||||
|
msgstr "[[Soutien technique|https://support.ilot.io/help/706927618]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "Contribute"
|
||||||
|
msgstr "Contribuer"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Become a member|join]]"
|
||||||
|
msgstr "[[Devenir membre|join]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li><li>
|
||||||
|
msgid "[[Donate|https://opencollective.com/ilot]]"
|
||||||
|
msgstr "[[Faire un don|https://opencollective.com/ilot]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li><li>
|
||||||
|
msgid "[[Git Forge|https://forge.ilot.io/ilot/-/projects]]"
|
||||||
|
msgstr "[[Forge Git|https://forge.ilot.io/ilot/-/projects]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li><li>
|
||||||
|
msgid "[[Wiki|https://wiki.ilot.io]]"
|
||||||
|
msgstr "[[Wiki|https://wiki.ilot.io]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "About us"
|
||||||
|
msgstr "À propos de nous"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Code of conduct|meta/code-of-conduct]]"
|
||||||
|
msgstr "[[Code de conduite|meta/code-of-conduct]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Licenses|meta/license]]"
|
||||||
|
msgstr "[[Licenses|meta/license]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Network Status|https://status.ilot.io/status/ilot]]"
|
||||||
|
msgstr "[[État du réseau|https://status.ilot.io/status/ilot]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "News"
|
||||||
|
msgstr "Nouvelles"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><p>
|
||||||
|
msgid "Subscribe to our [[newsletter|https://notif.ilot.io/archive]]"
|
||||||
|
msgstr "S'abonner à notre [[liste de diffusion|https://notif.ilot.io/archive]]"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><script>
|
||||||
|
msgid ""
|
||||||
|
"document.addEventListener('keydown', function (event) { if (event.keyCode "
|
||||||
|
"=== 13 && event.target.nodeName === 'INPUT') { var form = event.target.form; "
|
||||||
|
"var index = Array.prototype.indexOf.call(form, event.target); form."
|
||||||
|
"elements[index + 1].focus(); event.preventDefault(); } });"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form>
|
||||||
|
msgid ""
|
||||||
|
"<input type=\"hidden\" name=\"nonce\" /> <input id=\"39425\" type=\"hidden\" "
|
||||||
|
"name=\"l\" value=\"39425113-44b5-46f7-9897-91151467b05f\" />"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div>
|
||||||
|
msgid ""
|
||||||
|
"<input aria-label=\"Email\" class=\"btn\" type=\"email\" name=\"email\" "
|
||||||
|
"required placeholder=\"E-mail\" />"
|
||||||
|
msgstr ""
|
||||||
|
"<input aria-label=\"Email\" class=\"btn\" type=\"email\" name=\"email\" "
|
||||||
|
"required placeholder=\"Courriel\" />"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form>
|
||||||
|
msgid ""
|
||||||
|
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"button\" data-bs-"
|
||||||
|
"toggle=\"modal\" data-bs-target=\"#hcaptchamodal\">Subscribe</button>"
|
||||||
|
msgstr ""
|
||||||
|
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"button\" data-bs-"
|
||||||
|
"toggle=\"modal\" data-bs-target=\"#hcaptchamodal\">S'abonner</button>"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div><div><div><div><h5>
|
||||||
|
msgid "Are you a robot?"
|
||||||
|
msgstr "Êtes-vous un robot?"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div><div><div><div>
|
||||||
|
msgid ""
|
||||||
|
"<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-"
|
||||||
|
"label=\"Close\"></button>"
|
||||||
|
msgstr ""
|
||||||
|
"<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" aria-"
|
||||||
|
"label=\"Fermer\"></button>"
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div><div><div><div>
|
||||||
|
msgid ""
|
||||||
|
"<button type=\"button\" class=\"btn btn-secondary\" data-bs-"
|
||||||
|
"dismiss=\"modal\">Close</button> <button aria-label=\"Subscribe\" "
|
||||||
|
"class=\"btn\" type=\"submit\">Subscribe</button>"
|
||||||
|
msgstr ""
|
||||||
|
"<button type=\"button\" class=\"btn btn-secondary\" data-bs-"
|
||||||
|
"dismiss=\"modal\">Fermer</button> <button aria-label=\"Subscribe\" "
|
||||||
|
"class=\"btn\" type=\"submit\">S'abonner</button>"
|
||||||
|
|
||||||
|
#, fuzzy
|
||||||
|
#~| msgid "[[Wiki|https://wiki.ilot.io]]"
|
||||||
|
#~ msgid "Powered by [[ikiwiki|http://ikiwiki.info/]]."
|
||||||
|
#~ msgstr "[[Wiki|https://wiki.ilot.io]]"
|
||||||
|
|
||||||
|
#~ msgid "[[Join a work group]]"
|
||||||
|
#~ msgstr "[[Rejoindre un groupe de travail]]"
|
||||||
|
|
||||||
|
#~ msgid "[[Donate]]"
|
||||||
|
#~ msgstr "[[Fair un don]]"
|
||||||
|
|
||||||
|
#~ msgid "[[Data and Privacy Policy]]"
|
||||||
|
#~ msgstr "[[Politique des données]]"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "<span class=\"copyright\"> Copyleft © 2024-2024 ilot [[CC-BY-SA|meta/"
|
||||||
|
#~ "license]] </span> <span class=\"pull-right powered-by\"> Powered by "
|
||||||
|
#~ "[[ikiwiki|http://ikiwiki.info/]]. </span>"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "<span class=\"copyright\"> Copyleft © 2024-2024 ilot [[CC-BY-SA|meta/"
|
||||||
|
#~ "license]] </span> <span class=\"pull-right powered-by\"> Propulsé par "
|
||||||
|
#~ "[[ikiwiki|http://ikiwiki.info/]]. </span>"
|
79
footer.html
Normal file
|
@ -0,0 +1,79 @@
|
||||||
|
<p class="text-muted">
|
||||||
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<h5>Support</h5>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>[[FAQs|https://support.ilot.io/en/hc/706927618]]</li>
|
||||||
|
<li>[[Known issues|https://forge.ilot.io/ilot/-/projects/3]]</li>
|
||||||
|
<li>[[Support ticket|https://support.ilot.io/help/706927618]]</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<h5>Contribute</h5>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>[[Become a member|join]]
|
||||||
|
<li>[[Donate|https://opencollective.com/ilot]]</li>
|
||||||
|
<li>[[Git Forge|https://forge.ilot.io/ilot/-/projects]]</li>
|
||||||
|
<li>[[Wiki|https://wiki.ilot.io]]</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<h5>About us</h5>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>[[Code of conduct|meta/code-of-conduct]]</li>
|
||||||
|
<li>[[Licenses|meta/license]]</li>
|
||||||
|
<li>[[Network Status|https://status.ilot.io/status/ilot]]</li>
|
||||||
|
</div>
|
||||||
|
<div class="col-sm-3 listmonk-form">
|
||||||
|
<h5>News</h5>
|
||||||
|
|
||||||
|
<p>Subscribe to our [[newsletter|https://notif.ilot.io/archive]]</p>
|
||||||
|
|
||||||
|
<form method="post" action="https://notif.ilot.io/subscription/form" class="listmonk-form">
|
||||||
|
|
||||||
|
<!-- Converts enter key to tab -->
|
||||||
|
<script>
|
||||||
|
document.addEventListener('keydown', function (event) {
|
||||||
|
if (event.keyCode === 13 && event.target.nodeName === 'INPUT') {
|
||||||
|
var form = event.target.form;
|
||||||
|
var index = Array.prototype.indexOf.call(form, event.target);
|
||||||
|
form.elements[index + 1].focus();
|
||||||
|
event.preventDefault();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<input type="hidden" name="nonce" />
|
||||||
|
<input id="39425" type="hidden" name="l" value="39425113-44b5-46f7-9897-91151467b05f" />
|
||||||
|
<div class="t">
|
||||||
|
<input aria-label="Email" class="btn" type="email" name="email" required placeholder="E-mail" />
|
||||||
|
</div>
|
||||||
|
<button aria-label="Subscribe" class="btn" type="button" data-bs-toggle="modal" data-bs-target="#hcaptchamodal">Subscribe</button>
|
||||||
|
<div class="modal fade" id="hcaptchamodal" tabindex="-1" aria-labelledby="haptcha" aria-hidden="true">
|
||||||
|
<div class="modal-dialog">
|
||||||
|
<div class="modal-content">
|
||||||
|
<div class="modal-header">
|
||||||
|
<h5 class="modal-title" id="hcapatchamodallabel">Are you a robot?</h5>
|
||||||
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
||||||
|
</div>
|
||||||
|
<div class="modal-body">
|
||||||
|
<div class="h-captcha" data-sitekey="be08a59e-ae24-472e-8a80-22d07016ee90" data-callback="submitSubscribe"></div>
|
||||||
|
<script src="https://js.hcaptcha.com/1/api.js" async defer></script>
|
||||||
|
</div>
|
||||||
|
<div class="modal-footer">
|
||||||
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
|
||||||
|
<button aria-label="Subscribe" class="btn" type="submit">Subscribe</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</p>
|
121
footer.pot
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
# 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: 2025-03-13 17:50-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: <p><div><div><div><h5>
|
||||||
|
msgid "Support"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[FAQs|https://support.ilot.io/en/hc/706927618]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Known issues|https://forge.ilot.io/ilot/-/projects/3]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Support ticket|https://support.ilot.io/help/706927618]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "Contribute"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Become a member|join]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li><li>
|
||||||
|
msgid "[[Donate|https://opencollective.com/ilot]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li><li>
|
||||||
|
msgid "[[Git Forge|https://forge.ilot.io/ilot/-/projects]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li><li>
|
||||||
|
msgid "[[Wiki|https://wiki.ilot.io]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "About us"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Code of conduct|meta/code-of-conduct]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Licenses|meta/license]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><ul><li>
|
||||||
|
msgid "[[Network Status|https://status.ilot.io/status/ilot]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><h5>
|
||||||
|
msgid "News"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><p>
|
||||||
|
msgid "Subscribe to our [[newsletter|https://notif.ilot.io/archive]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><script>
|
||||||
|
msgid ""
|
||||||
|
"document.addEventListener('keydown', function (event) { if (event.keyCode "
|
||||||
|
"=== 13 && event.target.nodeName === 'INPUT') { var form = event.target.form; "
|
||||||
|
"var index = Array.prototype.indexOf.call(form, event.target); "
|
||||||
|
"form.elements[index + 1].focus(); event.preventDefault(); } });"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form>
|
||||||
|
msgid ""
|
||||||
|
"<input type=\"hidden\" name=\"nonce\" /> <input id=\"981a0\" type=\"hidden\" "
|
||||||
|
"name=\"l\" value=\"981a06b2-c76b-41d0-be19-f6092c4e91cd\" />"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div>
|
||||||
|
msgid ""
|
||||||
|
"<input aria-label=\"Email\" class=\"btn\" type=\"email\" name=\"email\" "
|
||||||
|
"required placeholder=\"E-mail\" />"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form>
|
||||||
|
msgid ""
|
||||||
|
"<button aria-label=\"Subscribe\" class=\"btn\" type=\"button\" "
|
||||||
|
"data-bs-toggle=\"modal\" "
|
||||||
|
"data-bs-target=\"#hcaptchamodal\">Subscribe</button>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div><div><div><div><h5>
|
||||||
|
msgid "Are you a robot?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div><div><div><div>
|
||||||
|
msgid ""
|
||||||
|
"<button type=\"button\" class=\"btn-close\" data-bs-dismiss=\"modal\" "
|
||||||
|
"aria-label=\"Close\"></button>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <p><div><div><div><form><div><div><div><div>
|
||||||
|
msgid ""
|
||||||
|
"<button type=\"button\" class=\"btn btn-secondary\" "
|
||||||
|
"data-bs-dismiss=\"modal\">Close</button> <button aria-label=\"Subscribe\" "
|
||||||
|
"class=\"btn\" type=\"submit\">Subscribe</button>"
|
||||||
|
msgstr ""
|
|
@ -1,174 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,169 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><a href="../platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="../join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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 +0,0 @@
|
||||||
Fri Aug 30 01:34:00 UTC 2024
|
|
|
@ -1,219 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 "<span class="createlink">formatting</span>"
|
|
||||||
msgstr "<span class="createlink">formatting</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">wikilink</span>"
|
|
||||||
msgstr "<span class="createlink">wikilink</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">subpage</span>"
|
|
||||||
msgstr "<span class="createlink">subpage</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">pagespec</span>"
|
|
||||||
msgstr "<span class="createlink">pagespec</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">directive</span>"
|
|
||||||
msgstr "<span class="createlink">directive</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">markdown</span>"
|
|
||||||
msgstr "<span class="createlink">markdown</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">openid</span>"
|
|
||||||
msgstr "<span class="createlink">openid</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">searching</span>"
|
|
||||||
msgstr "<span class="createlink">searching</span>"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid "<span class="createlink">templates</span>"
|
|
||||||
msgstr "<span class="createlink">templates</span>"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
418
ikiwiki.setup
Normal file
|
@ -0,0 +1,418 @@
|
||||||
|
# IkiWiki::Setup::Yaml - YAML formatted setup file
|
||||||
|
#
|
||||||
|
# Setup file for ikiwiki.
|
||||||
|
#
|
||||||
|
# Passing this to ikiwiki --setup will make ikiwiki generate
|
||||||
|
# wrappers and build the wiki.
|
||||||
|
#
|
||||||
|
# Remember to re-run ikiwiki --setup any time you edit this file.
|
||||||
|
#
|
||||||
|
# name of the wiki
|
||||||
|
wikiname: ilot.io
|
||||||
|
# contact email for wiki
|
||||||
|
adminemail: support@ilot.io
|
||||||
|
# users who are wiki admins
|
||||||
|
adminuser: []
|
||||||
|
# users who are banned from the wiki
|
||||||
|
banned_users: []
|
||||||
|
# where the source of the wiki is located
|
||||||
|
srcdir: ./
|
||||||
|
# where to build the wiki
|
||||||
|
destdir: ./public
|
||||||
|
# base url to the wiki
|
||||||
|
url: https://ilot.io
|
||||||
|
# url to the ikiwiki.cgi
|
||||||
|
cgiurl: ''
|
||||||
|
# do not adjust cgiurl if CGI is accessed via different URL
|
||||||
|
reverse_proxy: 0
|
||||||
|
# filename of cgi wrapper to generate
|
||||||
|
cgi_wrapper: ''
|
||||||
|
# mode for cgi_wrapper (can safely be made suid)
|
||||||
|
cgi_wrappermode: 06755
|
||||||
|
# number of seconds to delay CGI requests when overloaded
|
||||||
|
cgi_overload_delay: ''
|
||||||
|
# message to display when overloaded (may contain html)
|
||||||
|
cgi_overload_message: ''
|
||||||
|
# enable optimization of only refreshing committed changes?
|
||||||
|
only_committed_changes: 0
|
||||||
|
# rcs backend to use
|
||||||
|
rcs: ''
|
||||||
|
# plugins to add to the default configuration
|
||||||
|
add_plugins:
|
||||||
|
- html
|
||||||
|
- goodstuff
|
||||||
|
- favicon
|
||||||
|
- highlight
|
||||||
|
- typography
|
||||||
|
- sidebar2
|
||||||
|
- po
|
||||||
|
- inline
|
||||||
|
# plugins to disable
|
||||||
|
disable_plugins:
|
||||||
|
- htmlscrubber
|
||||||
|
# additional directory to search for template files
|
||||||
|
templatedir: ./templates
|
||||||
|
#templatedir: /usr/share/ikiwiki/templates
|
||||||
|
# base wiki source location
|
||||||
|
#underlaydir: /usr/share/ikiwiki/basewiki
|
||||||
|
# display verbose messages?
|
||||||
|
verbose: 1
|
||||||
|
# log to syslog?
|
||||||
|
#syslog: 1
|
||||||
|
# create output files named page/index.html?
|
||||||
|
usedirs: 1
|
||||||
|
# use '!'-prefixed preprocessor directives?
|
||||||
|
prefix_directives: 1
|
||||||
|
# use page/index.mdwn source files
|
||||||
|
indexpages: 0
|
||||||
|
# enable Discussion pages?
|
||||||
|
discussion: 1
|
||||||
|
# name of Discussion pages
|
||||||
|
discussionpage: Discussion
|
||||||
|
# use elements new in HTML5 like <section>?
|
||||||
|
html5: 1
|
||||||
|
# only send cookies over SSL connections?
|
||||||
|
sslcookie: 0
|
||||||
|
# extension to use for new pages
|
||||||
|
default_pageext: mdwn
|
||||||
|
# extension to use for html files
|
||||||
|
htmlext: html
|
||||||
|
# strftime format string to display date
|
||||||
|
timeformat: '%c'
|
||||||
|
# UTF-8 locale to use
|
||||||
|
#locale: en_US.UTF-8
|
||||||
|
# put user pages below specified page
|
||||||
|
userdir: ''
|
||||||
|
# how many backlinks to show before hiding excess (0 to show all)
|
||||||
|
numbacklinks: 10
|
||||||
|
# attempt to hardlink source files? (optimisation for large files)
|
||||||
|
hardlink: 0
|
||||||
|
# force ikiwiki to use a particular umask (keywords public, group or private, or a number)
|
||||||
|
#umask: public
|
||||||
|
# group for wrappers to run in
|
||||||
|
#wrappergroup: ikiwiki
|
||||||
|
# extra library and plugin directories
|
||||||
|
libdirs: [plugins]
|
||||||
|
# extra library and plugin directory (searched after libdirs)
|
||||||
|
libdir: ''
|
||||||
|
# environment variables
|
||||||
|
ENV: {}
|
||||||
|
# time zone name
|
||||||
|
timezone: :/etc/localtime
|
||||||
|
# regexp of normally excluded files to include
|
||||||
|
#include: ^\.htaccess$
|
||||||
|
# regexp of files that should be skipped
|
||||||
|
exclude: ^(tools/.*|public/.*|plugins/.*)$
|
||||||
|
# specifies the characters that are allowed in source filenames
|
||||||
|
wiki_file_chars: -[:alnum:]+/.:_
|
||||||
|
# allow symlinks in the path leading to the srcdir (potentially insecure)
|
||||||
|
allow_symlinks_before_srcdir: 0
|
||||||
|
# cookie control
|
||||||
|
cookiejar:
|
||||||
|
file: ~/.ikiwiki/cookies
|
||||||
|
# set custom user agent string for outbound HTTP requests e.g. when fetching aggregated RSS feeds
|
||||||
|
useragent: ikiwiki/3.20160509
|
||||||
|
# theme has a responsive layout? (mobile-optimized)
|
||||||
|
responsive_layout: 1
|
||||||
|
# try harder to produce deterministic output
|
||||||
|
deterministic: 0
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# core plugins
|
||||||
|
# (editpage, htmlscrubber, inline, link, meta, parentlinks, templatebody)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# htmlscrubber plugin
|
||||||
|
# PageSpec specifying pages not to scrub
|
||||||
|
#htmlscrubber_skip: '!*/Discussion'
|
||||||
|
|
||||||
|
# inline plugin
|
||||||
|
# enable rss feeds by default?
|
||||||
|
#rss: 0
|
||||||
|
# enable atom feeds by default?
|
||||||
|
#atom: 0
|
||||||
|
# allow rss feeds to be used?
|
||||||
|
#allowrss: 0
|
||||||
|
# allow atom feeds to be used?
|
||||||
|
#allowatom: 0
|
||||||
|
# urls to ping (using XML-RPC) on feed update
|
||||||
|
pingurl: []
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# auth plugins
|
||||||
|
# (anonok, blogspam, emailauth, httpauth, lockedit, moderatedcomments,
|
||||||
|
# opendiscussion, openid, passwordauth, signinedit)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# anonok plugin
|
||||||
|
# PageSpec to limit which pages anonymous users can edit
|
||||||
|
#anonok_pagespec: '*/discussion'
|
||||||
|
|
||||||
|
# blogspam plugin
|
||||||
|
# PageSpec of pages to check for spam
|
||||||
|
#blogspam_pagespec: postcomment(*)
|
||||||
|
# options to send to blogspam server
|
||||||
|
#blogspam_options: blacklist=1.2.3.4,blacklist=8.7.6.5,max-links=10
|
||||||
|
# blogspam server JSON url
|
||||||
|
#blogspam_server: ''
|
||||||
|
|
||||||
|
# emailauth plugin
|
||||||
|
# email address to send emailauth mails as (default: adminemail)
|
||||||
|
#emailauth_sender: ''
|
||||||
|
|
||||||
|
# httpauth plugin
|
||||||
|
# url to redirect to when authentication is needed
|
||||||
|
#cgiauthurl: http://example.com/wiki/auth/ikiwiki.cgi
|
||||||
|
# PageSpec of pages where only httpauth will be used for authentication
|
||||||
|
#httpauth_pagespec: '!*/Discussion'
|
||||||
|
|
||||||
|
# lockedit plugin
|
||||||
|
# PageSpec controlling which pages are locked
|
||||||
|
#locked_pages: '!*/Discussion'
|
||||||
|
|
||||||
|
# moderatedcomments plugin
|
||||||
|
# PageSpec matching users or comment locations to moderate
|
||||||
|
#moderate_pagespec: '*'
|
||||||
|
|
||||||
|
# openid plugin
|
||||||
|
# url pattern of openid realm (default is cgiurl)
|
||||||
|
#openid_realm: ''
|
||||||
|
# url to ikiwiki cgi to use for openid authentication (default is cgiurl)
|
||||||
|
#openid_cgiurl: ''
|
||||||
|
|
||||||
|
# passwordauth plugin
|
||||||
|
# a password that must be entered when signing up for an account
|
||||||
|
#account_creation_password: s3cr1t
|
||||||
|
# cost of generating a password using Authen::Passphrase::BlowfishCrypt
|
||||||
|
#password_cost: 8
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# format plugins
|
||||||
|
# (creole, highlight, hnb, html, mdwn, otl, rawhtml, rst, textile, txt)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# highlight plugin
|
||||||
|
# types of source files to syntax highlight
|
||||||
|
#tohighlight: .c .h .cpp .pl .py Makefile:make
|
||||||
|
# location of highlight's filetypes.conf
|
||||||
|
#filetypes_conf: /etc/highlight/filetypes.conf
|
||||||
|
# location of highlight's langDefs directory
|
||||||
|
#langdefdir: /usr/share/highlight/langDefs
|
||||||
|
|
||||||
|
# mdwn plugin
|
||||||
|
# enable multimarkdown features?
|
||||||
|
#multimarkdown: 0
|
||||||
|
# disable use of markdown discount?
|
||||||
|
#nodiscount: 0
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# special-purpose plugins
|
||||||
|
# (osm, underlay)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# osm plugin
|
||||||
|
# the default zoom when you click on the map link
|
||||||
|
#osm_default_zoom: 15
|
||||||
|
# the icon shown on links and on the main map
|
||||||
|
#osm_default_icon: ikiwiki/images/osm.png
|
||||||
|
# the alt tag of links, defaults to empty
|
||||||
|
#osm_alt: ''
|
||||||
|
# the output format for waypoints, can be KML, GeoJSON or CSV (one or many, comma-separated)
|
||||||
|
#osm_format: KML
|
||||||
|
# the icon attached to a tag, displayed on the map for tagged pages
|
||||||
|
#osm_tag_default_icon: icon.png
|
||||||
|
# Url for the OpenLayers.js file
|
||||||
|
#osm_openlayers_url: http://www.openlayers.org/api/OpenLayers.js
|
||||||
|
# Layers to use in the map. Can be either the 'OSM' string or a type option for Google maps (GoogleNormal, GoogleSatellite, GoogleHybrid or GooglePhysical). It can also be an arbitrary URL in a syntax acceptable for OpenLayers.Layer.OSM.url parameter.
|
||||||
|
#osm_layers:
|
||||||
|
# OSM: GoogleSatellite
|
||||||
|
# Google maps API key, Google layer not used if missing, see https://code.google.com/apis/console/ to get an API key
|
||||||
|
#osm_google_apikey: ''
|
||||||
|
|
||||||
|
# underlay plugin
|
||||||
|
# extra underlay directories to add
|
||||||
|
#add_underlays:
|
||||||
|
#- /home/axil/wiki.underlay
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# web plugins
|
||||||
|
# (404, attachment, comments, editdiff, edittemplate, getsource, google,
|
||||||
|
# goto, mirrorlist, remove, rename, repolist, search, theme, userlist,
|
||||||
|
# websetup, wmd)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# attachment plugin
|
||||||
|
# enhanced PageSpec specifying what attachments are allowed
|
||||||
|
#allowed_attachments: virusfree() and mimetype(image/*) and maxsize(50kb)
|
||||||
|
# virus checker program (reads STDIN, returns nonzero if virus found)
|
||||||
|
#virus_checker: clamdscan -
|
||||||
|
|
||||||
|
# comments plugin
|
||||||
|
# PageSpec of pages where comments are allowed
|
||||||
|
#comments_pagespec: blog/* and !*/Discussion
|
||||||
|
# PageSpec of pages where posting new comments is not allowed
|
||||||
|
#comments_closed_pagespec: blog/controversial or blog/flamewar
|
||||||
|
# Base name for comments, e.g. "comment_" for pages like "sandbox/comment_12"
|
||||||
|
#comments_pagename: ''
|
||||||
|
# Interpret directives in comments?
|
||||||
|
#comments_allowdirectives: 0
|
||||||
|
# Allow anonymous commenters to set an author name?
|
||||||
|
#comments_allowauthor: 0
|
||||||
|
# commit comments to the VCS
|
||||||
|
#comments_commit: 1
|
||||||
|
# Restrict formats for comments to (no restriction if empty)
|
||||||
|
#comments_allowformats: mdwn txt
|
||||||
|
|
||||||
|
# getsource plugin
|
||||||
|
# Mime type for returned source.
|
||||||
|
#getsource_mimetype: text/plain; charset=utf-8
|
||||||
|
|
||||||
|
# mirrorlist plugin
|
||||||
|
# list of mirrors
|
||||||
|
#mirrorlist: {}
|
||||||
|
# generate links that point to the mirrors' ikiwiki CGI
|
||||||
|
#mirrorlist_use_cgi: 1
|
||||||
|
|
||||||
|
# repolist plugin
|
||||||
|
# URIs of repositories containing the wiki's source
|
||||||
|
#repositories:
|
||||||
|
#- svn://svn.example.org/wiki/trunk
|
||||||
|
|
||||||
|
# search plugin
|
||||||
|
# path to the omega cgi program
|
||||||
|
#omega_cgi: /usr/lib/cgi-bin/omega/omega
|
||||||
|
# use google site search rather than internal xapian index?
|
||||||
|
#google_search: 1
|
||||||
|
|
||||||
|
# theme plugin
|
||||||
|
# name of theme to enable
|
||||||
|
#theme: night_city
|
||||||
|
|
||||||
|
# websetup plugin
|
||||||
|
# list of plugins that cannot be enabled/disabled via the web interface
|
||||||
|
#websetup_force_plugins: []
|
||||||
|
# list of additional setup field keys to treat as unsafe
|
||||||
|
#websetup_unsafe: []
|
||||||
|
# show unsafe settings, read-only, in web interface?
|
||||||
|
#websetup_show_unsafe: 1
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# widget plugins
|
||||||
|
# (calendar, color, conditional, cutpaste, date, format, fortune,
|
||||||
|
# graphviz, haiku, headinganchors, img, linkmap, listdirectives, map,
|
||||||
|
# more, orphans, pagecount, pagestats, poll, polygen, postsparkline,
|
||||||
|
# progress, shortcut, sparkline, table, template, teximg, toc, toggle,
|
||||||
|
# version)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# calendar plugin
|
||||||
|
# base of the archives hierarchy
|
||||||
|
#archivebase: archives
|
||||||
|
# PageSpec of pages to include in the archives, if option `calendar_autocreate` is true.
|
||||||
|
#archive_pagespec: page(posts/*) and !*/Discussion
|
||||||
|
# autocreate new calendar pages?
|
||||||
|
#calendar_autocreate: 1
|
||||||
|
# if set, when building calendar pages, also build pages of year and month when no pages were published (building empty calendars).
|
||||||
|
#calendar_fill_gaps: 1
|
||||||
|
|
||||||
|
# img plugin
|
||||||
|
# Image formats to process (jpeg, png, gif, svg, pdf or 'everything' to accept all)
|
||||||
|
#img_allowed_formats: ''
|
||||||
|
|
||||||
|
# listdirectives plugin
|
||||||
|
# directory in srcdir that contains directive descriptions
|
||||||
|
#directive_description_dir: ikiwiki/directive
|
||||||
|
|
||||||
|
# teximg plugin
|
||||||
|
# Should teximg use dvipng to render, or dvips and convert?
|
||||||
|
#teximg_dvipng: ''
|
||||||
|
# LaTeX prefix for teximg plugin
|
||||||
|
#teximg_prefix: |
|
||||||
|
# \documentclass{article}
|
||||||
|
# \usepackage[utf8]{inputenc}
|
||||||
|
# \usepackage{amsmath}
|
||||||
|
# \usepackage{amsfonts}
|
||||||
|
# \usepackage{amssymb}
|
||||||
|
# \pagestyle{empty}
|
||||||
|
# \begin{document}
|
||||||
|
# LaTeX postfix for teximg plugin
|
||||||
|
#teximg_postfix: \end{document}
|
||||||
|
|
||||||
|
######################################################################
|
||||||
|
# other plugins
|
||||||
|
# (aggregate, autoindex, brokenlinks, camelcase, ddate, embed, favicon,
|
||||||
|
# filecheck, flattr, goodstuff, htmlbalance, localstyle, loginselector,
|
||||||
|
# notifyemail, pagetemplate, pingee, pinger, prettydate, recentchanges,
|
||||||
|
# recentchangesdiff, relativedate, rsync, sidebar, smiley,
|
||||||
|
# sortnaturally, tag, testpagespec, trail, transient)
|
||||||
|
######################################################################
|
||||||
|
|
||||||
|
# aggregate plugin
|
||||||
|
# enable aggregation to internal pages?
|
||||||
|
#aggregateinternal: 1
|
||||||
|
# allow aggregation to be triggered via the web?
|
||||||
|
#aggregate_webtrigger: 0
|
||||||
|
|
||||||
|
# autoindex plugin
|
||||||
|
# commit autocreated index pages
|
||||||
|
#autoindex_commit: 1
|
||||||
|
|
||||||
|
# camelcase plugin
|
||||||
|
# list of words to not turn into links
|
||||||
|
#camelcase_ignore: []
|
||||||
|
|
||||||
|
# flattr plugin
|
||||||
|
# userid or user name to use by default for Flattr buttons
|
||||||
|
#flattr_userid: joeyh
|
||||||
|
|
||||||
|
# pinger plugin
|
||||||
|
# how many seconds to try pinging before timing out
|
||||||
|
#pinger_timeout: 15
|
||||||
|
|
||||||
|
# prettydate plugin
|
||||||
|
# format to use to display date
|
||||||
|
#prettydateformat: '%X, %B %o, %Y'
|
||||||
|
|
||||||
|
# recentchanges plugin
|
||||||
|
# name of the recentchanges page
|
||||||
|
recentchangespage: recentchanges
|
||||||
|
# number of changes to track
|
||||||
|
recentchangesnum: 100
|
||||||
|
|
||||||
|
# rsync plugin
|
||||||
|
# command to run to sync updated pages
|
||||||
|
#rsync_command: rsync -qa --delete . user@host:/path/to/docroot/
|
||||||
|
|
||||||
|
# sidebar plugin
|
||||||
|
# show sidebar page on all pages?
|
||||||
|
#global_sidebars: 1
|
||||||
|
|
||||||
|
# tag plugin
|
||||||
|
# parent page tags are located under
|
||||||
|
#tagbase: tag
|
||||||
|
# autocreate new tag pages?
|
||||||
|
#tag_autocreate: 1
|
||||||
|
# commit autocreated tag pages
|
||||||
|
#tag_autocreate_commit: 1
|
||||||
|
|
||||||
|
# sidebar2 plugin
|
||||||
|
# https://ikiwiki.info/plugins/contrib/sidebar2/
|
||||||
|
global_sidebars:
|
||||||
|
- sidebar
|
||||||
|
- sidebar
|
||||||
|
- "*"
|
||||||
|
- footer
|
||||||
|
- footer
|
||||||
|
- "*"
|
||||||
|
|
||||||
|
# po plugin
|
||||||
|
# used to set the "master" language
|
||||||
|
po_master_language: en|English
|
||||||
|
# po_slave_languages is used to set the list of supported "slave" languages
|
||||||
|
po_slave_languages:
|
||||||
|
- fr|Français
|
||||||
|
# configures what pages are translatable
|
||||||
|
po_translatable_pages: 'index or footer or platforms or sidebar or join or recentchanges or shortcuts'
|
||||||
|
# used to decide how internal links should be generated, depending on web server features and site-specific preferences.
|
||||||
|
po_link_to: current
|
||||||
|
|
|
@ -1,273 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">WikiLink</span> in form, except they begin "
|
|
||||||
"with `!` and may contain parameters. The general form is:"
|
|
||||||
msgstr ""
|
|
||||||
"Les directives sont semblables aux <span class="createlink">WikiLink</span> mais elles "
|
|
||||||
"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 <span class="createlink">wikilinks</span>. This "
|
|
||||||
"syntax has several disadvantages: it requires a space after directives with "
|
|
||||||
"no parameters (such as `\[[pagecount ]]`), and it prohibits spaces in "
|
|
||||||
"<span class="createlink">wikilinks</span>. ikiwiki now provides the `!`-prefixed "
|
|
||||||
"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 <span class="createlink">wikilinks</span>. 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,383 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">MarkDown</span>, and it works like this:"
|
|
||||||
msgstr ""
|
|
||||||
"Sur ce wiki, la mise en forme du texte est semblable à celle utilisée dans "
|
|
||||||
"les courriels. Ce style de formatage s'appelle <span class="createlink">MarkDown</span>. Voici comment "
|
|
||||||
"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 <span class="createlink">MarkDown</span>, this wiki lets you "
|
|
||||||
"use the following additional features:"
|
|
||||||
msgstr ""
|
|
||||||
"En plus du formatage html élémentaire avec <span class="createlink">MarkDown</span>, ce wiki offre "
|
|
||||||
"d'autres possibilités :"
|
|
||||||
|
|
||||||
#. type: Bullet: '* '
|
|
||||||
msgid ""
|
|
||||||
"To link to another page on the wiki, place the page's name inside double "
|
|
||||||
"square brackets. So you would use `\[[WikiLink]]` to link to <span class="createlink">WikiLink</span>."
|
|
||||||
msgstr ""
|
|
||||||
"Pour créer un lien vers une autre page du wiki, mettre le nom de la page "
|
|
||||||
"entre deux paires de crochets. Ainsi, utilisez `\[[WikiLink]]` pour un lien "
|
|
||||||
"avec <span class="createlink">WikiLink</span>."
|
|
||||||
|
|
||||||
#. 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 (<span class="createlink">templates</span>) pour répéter des morceaux de "
|
|
||||||
"texte standard."
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
#, no-wrap
|
|
||||||
msgid ""
|
|
||||||
"* Insert various <span class="createlink">directives</span> onto a page to perform useful\n"
|
|
||||||
" 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,58 +0,0 @@
|
||||||
// © 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;
|
|
||||||
}
|
|
23
ikiwiki/jquery.min.js
vendored
|
@ -1,225 +0,0 @@
|
||||||
/*
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
};
|
|
|
@ -1,199 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">formatting</span> and "
|
|
||||||
"[Markdown: syntax](http://daringfireball.net/projects/markdown/syntax)."
|
|
||||||
msgstr ""
|
|
||||||
"Référez vous à <span class="createlink">formatting</span> et [Syntaxe Markdown](http://daringfireball."
|
|
||||||
"net/projects/markdown/syntax) pour la documentation sur la syntaxe du langage "
|
|
||||||
"markdown."
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid ""
|
|
||||||
"Note that <span class="createlink">WikiLinks</span> and <span class="createlink">directives</span> are not part "
|
|
||||||
"of the markdown syntax, and are the only bit of markup that this wiki "
|
|
||||||
"handles internally."
|
|
||||||
msgstr ""
|
|
||||||
"Notez que les <span class="createlink">WikiLinks</span> et les <span class="createlink">directives</span> ne font "
|
|
||||||
"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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,241 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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\" - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,461 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">SubPage</span>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 <span class="createlink">SubPage</span> 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,268 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../../">
|
|
||||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">PageSpec</span> syntax is expanded with the following "
|
|
||||||
"additional tests:"
|
|
||||||
msgstr ""
|
|
||||||
"La syntaxe normale de <span class="createlink">PageSpec</span> 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,221 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../../">
|
|
||||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 "
|
|
||||||
"<span class="createlink">PageSpec</span> 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,79 +0,0 @@
|
||||||
// © 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");
|
|
||||||
}
|
|
|
@ -1,233 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,202 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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, <span class="createlink">SubPage</span> has some related pages placed under it, like [[SubPage/"
|
|
||||||
"LinkingRules]]. This is a useful way to add some order to your wiki rather "
|
|
||||||
"than just having a great big directory full of pages."
|
|
||||||
msgstr ""
|
|
||||||
"ikiwiki permet de ranger les pages dans une arborescence de répertoires. Par "
|
|
||||||
"exemple cette page, <span class="createlink">SubPage</span>, est liée à des pages placées "
|
|
||||||
"hiérarchiquement sous elle, comme la page <span class="createlink">LinkingRules</span>. C'est "
|
|
||||||
"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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,253 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../../">
|
|
||||||
<img alt="ilot.io" src="../../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">SubPage</span>, you can normally use a regular "
|
|
||||||
"<span class="createlink">WikiLink</span> that does not contain the name of the parent directory of the "
|
|
||||||
"<span class="createlink">SubPage</span>. Ikiwiki descends the directory hierarchy looking for a page "
|
|
||||||
"that matches your link."
|
|
||||||
msgstr ""
|
|
||||||
"Pour faire un lien depuis ou vers une sous-page (<span class="createlink">SubPage</span>), vous pouvez "
|
|
||||||
"normalement utiliser un <span class="createlink">WikiLink</span> classique qui ne contient pas le nom du "
|
|
||||||
"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 <span class="createlink">SubPage</span> of FooBar."
|
|
||||||
msgstr ""
|
|
||||||
"Cela signifie que si un lien de FooBar/SomePage vers \"OtherPage\" pointe "
|
|
||||||
"actuellement vers OtherPage à la racine du wiki, et que la page FooBar/"
|
|
||||||
"OtherPage est créée, alors le lien _changera_ pour pointer vers la page "
|
|
||||||
"FooBar/OtherPage. Cependant, un lien de BazBar vers \"OtherPage\" ne serait "
|
|
||||||
"pas impacté par cette création d'une sous-page (<span class="createlink">SubPage</span>) de FooBar."
|
|
||||||
|
|
||||||
#. type: Plain text
|
|
||||||
msgid ""
|
|
||||||
"You can also specify a link that contains a directory name, like \"FooBar/"
|
|
||||||
"OtherPage\" to more exactly specify what page to link to. This is the only "
|
|
||||||
"way to link to an unrelated <span class="createlink">SubPage</span>."
|
|
||||||
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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,33 +0,0 @@
|
||||||
// © 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";
|
|
||||||
}
|
|
|
@ -1,262 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="robots" content="\"noindex," />
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 "
|
|
||||||
"<span class="createlink">WikiLink</span>, just put the name of the page to link to in double brackets. "
|
|
||||||
"For example `\[[WikiLink]]`."
|
|
||||||
msgstr ""
|
|
||||||
"Un WikiLink est un moyen simple de lier des pages entre elles. Pour créer un "
|
|
||||||
"<span class="createlink">WikiLink</span>, il suffit de mettre le nom d'une page à lier entre double "
|
|
||||||
"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 <span class="createlink">LinkingRules</span> that come into play when "
|
|
||||||
"linking between <span class="createlink">SubPages</span>."
|
|
||||||
msgstr ""
|
|
||||||
"Quelques règles spéciales, <span class="createlink">LinkingRules</span>, entrent en jeu pour "
|
|
||||||
"lier des sous-pages, <span class="createlink">SubPages</span>."
|
|
||||||
|
|
||||||
#. 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: <span class="createlink">foo bar</span>."
|
|
||||||
msgstr ""
|
|
||||||
"Il est aussi possible d'écrire un WikiLink dont le texte n'est pas un nom de "
|
|
||||||
"page. Ainsi, `\[[foo_bar|SandBox]]` pointe vers la page SandBox, mais le "
|
|
||||||
"lien apparaît comme ceci : <span class="createlink">foo bar</span>."
|
|
||||||
|
|
||||||
#. 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 <span class="createlink">directives</span>. 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 <span class="createlink">directives</span>. 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
Before Width: | Height: | Size: 293 B After Width: | Height: | Size: 293 B |
185
index.en.html
|
@ -1,185 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="">
|
|
||||||
<img alt="ilot.io" src="favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><span class="selflink">Home</span></li>
|
|
||||||
<li><a href="./platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="./join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p><header class="text-center">
|
|
||||||
<img src="images/ilot_black_256x256.png" />
|
|
||||||
<h1>WELCOME</h1>
|
|
||||||
<hr>
|
|
||||||
</header></p>
|
|
||||||
|
|
||||||
<p><a href="https://ilot.io">ilot</a> is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.</p>
|
|
||||||
|
|
||||||
<p>The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, visit our <a href="./join/index.en.html">registration form</a>.</p>
|
|
||||||
|
|
||||||
<p>ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.</p>
|
|
||||||
|
|
||||||
<h2>Learn more</h2>
|
|
||||||
|
|
||||||
<p>To learn more please visit some of the pages:</p>
|
|
||||||
|
|
||||||
<p><a href="./platforms/index.en.html">Platforms</a> - The online spaces we use and manage <br />
|
|
||||||
<a href="https://notif.ilot.io/archive">Archives</a> - Archives of our communications with our members <br />
|
|
||||||
<a href="https://support.ilot.io/en/hc/706927618">Support</a> - Guides for how to do things on ilot and to get help </p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="./meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
198
index.fr.html
|
@ -1,198 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="">
|
|
||||||
<img alt="ilot.io" src="favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><span class="selflink">Accueil</span></li>
|
|
||||||
<li><a href="./platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="./join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p><header class="text-center">
|
|
||||||
<img src="images/ilot_black_256x256.png" />
|
|
||||||
<h1>BIENVENUE</h1>
|
|
||||||
<hr>
|
|
||||||
</header></p>
|
|
||||||
|
|
||||||
<p><a href="https://ilot.io">ilot</a> est une isle coopérative de l'internet. Nous
|
|
||||||
administrons une instance de Nextcloud, une plateformes libre de travail et
|
|
||||||
de stockage de donnée analogue à Google Drive. Notre objectif est de nous
|
|
||||||
constituer en coopérative afin de créer une infrastructure numérique par et
|
|
||||||
pour ses utilisateur-ice-s, en alternative à l'internet cloisonné et
|
|
||||||
privatisé d'aujourd'hui. Les membres financent nos opérations et décident de
|
|
||||||
la manière de définir nos politiques communautaires, de gérer nos données et
|
|
||||||
nos technologies partagées. Les membres fournissent également la
|
|
||||||
main-d'œuvre nécessaire au fonctionnement de l'ilot à tous les niveaux.</p>
|
|
||||||
|
|
||||||
<p>Le projet est actuellement en version bêta, car il reste encore beaucoup de
|
|
||||||
travail à faire. Alors que l'infrastructure technique est mise en place et
|
|
||||||
stable, la gouvernance et les lignes directrices de la communauté sont
|
|
||||||
encore en cours d'élaboration. Si vous souhaitez rejoindre ilot, visitez
|
|
||||||
notre <a href="./join/index.fr.html">formulaire d'inscription</a>.</p>
|
|
||||||
|
|
||||||
<p>ilot a vu le jour en 2021 lorsque l'AESA-CIRI, l'association des étudiants
|
|
||||||
en sociologie, anthropologie et études de l'immigration de l'UQAM, a voulu
|
|
||||||
créer sa propre infrastructure numérique. Depuis, nous travaillons dans le
|
|
||||||
but de rendre le projet utile à d'autres organisations et individus.</p>
|
|
||||||
|
|
||||||
<h2>En savoir plus</h2>
|
|
||||||
|
|
||||||
<p>Pour en savoir plus, veuillez consulter ces pages :</p>
|
|
||||||
|
|
||||||
<p><a href="./platforms/index.fr.html">Plateformes</a> - Les espaces en ligne que nous utilisons et gérons <br />
|
|
||||||
<a href="https://notif.ilot.io/archive">Archives</a> - Archives de nos communications avec nos membres <br />
|
|
||||||
<a href="https://support.ilot.io/fr/hc/706927618">Support</a> - Guides sur la façon de faire les choses sur l'ilot et d'obtenir de l'aide </p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="./meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
BIN
index.fr.mo
113
index.fr.po
Normal file
|
@ -0,0 +1,113 @@
|
||||||
|
# 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: ilot.io\n"
|
||||||
|
"POT-Creation-Date: 2024-09-08 12:28-0400\n"
|
||||||
|
"PO-Revision-Date: 2025-04-03 18:45-0400\n"
|
||||||
|
"Last-Translator: Philippe Batailler <philippe.batailler@free.fr>\n"
|
||||||
|
"Language-Team: 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.5\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/ilot_black_256x256.png\" />\n"
|
||||||
|
" <h1>WELCOME</h1>\n"
|
||||||
|
" <hr>\n"
|
||||||
|
"</header>\n"
|
||||||
|
msgstr ""
|
||||||
|
"<header class=\"text-center\">\n"
|
||||||
|
" <img src=\"images/ilot_black_256x256.png\" />\n"
|
||||||
|
" <h1>BIENVENUE</h1>\n"
|
||||||
|
" <hr>\n"
|
||||||
|
"</header>\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate "
|
||||||
|
"a Nextcloud instance, a free and open-source collaboration platform "
|
||||||
|
"analoguous to Google Drive. We aim to eventually incorporate as a "
|
||||||
|
"cooperative to create a digital infrastructure that is by and for its users "
|
||||||
|
"as an alternative to the siloed and privatized internet of today. Members "
|
||||||
|
"fund our operations and decide how to set our community policies, steward "
|
||||||
|
"our data, and manage our shared technologies. Members also provide the labor "
|
||||||
|
"to run ilot at all levels."
|
||||||
|
msgstr ""
|
||||||
|
"[[ilot|https://ilot.io]] est une ile coopérative de l'internet. Nous "
|
||||||
|
"administrons une instance de Nextcloud, une plateforme libre de travail et "
|
||||||
|
"de stockage de donnée analogue à Google Drive. Notre objectif est de nous "
|
||||||
|
"constituer en coopérative afin de créer une infrastructure numérique par et "
|
||||||
|
"pour ses utilisateur-ice-s, en alternative à l'internet cloisonné et "
|
||||||
|
"privatisé d'aujourd'hui. Les membres financent nos opérations et décident de "
|
||||||
|
"la manière de définir nos politiques communautaires, de gérer nos données et "
|
||||||
|
"nos technologies partagées. Les membres fournissent également la main-"
|
||||||
|
"d'œuvre nécessaire au fonctionnement de l'ilot à tous les niveaux."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"The project is currently in beta, as there is still a lot of work left to "
|
||||||
|
"do. While the technical infrastructure is setup and stable, the governance "
|
||||||
|
"and community guidelines are still a work in progress. If you are interested "
|
||||||
|
"in joining ilot, visit our [[registration form|join]]."
|
||||||
|
msgstr ""
|
||||||
|
"Le projet est actuellement en version bêta, car il reste encore beaucoup de "
|
||||||
|
"travail à faire. Alors que l'infrastructure technique est mise en place et "
|
||||||
|
"stable, la gouvernance et les lignes directrices de la communauté sont "
|
||||||
|
"encore en cours d'élaboration. Si vous souhaitez vous joindre à notre "
|
||||||
|
"projet, compléter notre [[formulaire d'inscription|join]]."
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and "
|
||||||
|
"immigration studies sudent association of UQAM, wanted to create its own "
|
||||||
|
"digital infrastructure. Since then, we have worked toward the goal of making "
|
||||||
|
"the project useful to other organisations and individuals."
|
||||||
|
msgstr ""
|
||||||
|
"ilot a vu le jour en 2021 lorsque l'AESA-CIRI, l'association des étudiants "
|
||||||
|
"en sociologie, anthropologie et études de l'immigration de l'UQAM, a voulu "
|
||||||
|
"créer sa propre infrastructure numérique. Depuis, nous travaillons dans le "
|
||||||
|
"but de rendre le projet utile à d'autres organisations et individus."
|
||||||
|
|
||||||
|
#. type: Title ##
|
||||||
|
#, no-wrap
|
||||||
|
msgid "Learn more"
|
||||||
|
msgstr "En savoir plus"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid "To learn more please visit some of the pages:"
|
||||||
|
msgstr "Pour en savoir plus, veuillez consulter ces pages :"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[Platforms]] - The online spaces we use and manage \n"
|
||||||
|
msgstr "[[Plateformes|platforms]] - Les espaces en ligne que nous utilisons et gérons \n"
|
||||||
|
|
||||||
|
#, no-wrap
|
||||||
|
#~ msgid "[[Archives|https://notif.ilot.io/archive]] - Archives of our communications with our members \n"
|
||||||
|
#~ msgstr "[[Archives|https://notif.ilot.io/archive]] - Archives de nos communications avec nos membres \n"
|
||||||
|
|
||||||
|
#, no-wrap
|
||||||
|
#~ msgid "[[Support|https://support.ilot.io/en/hc/706927618]] - Guides for how to do things on ilot and to get help \n"
|
||||||
|
#~ msgstr "[[Support|https://support.ilot.io/fr/hc/706927618]] - Guides sur la façon de faire les choses sur l'ilot et d'obtenir de l'aide \n"
|
||||||
|
|
||||||
|
#~ 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]]."
|
19
index.mdwn
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
[[!meta title="Home"]]
|
||||||
|
|
||||||
|
<header class="text-center">
|
||||||
|
<img src="images/ilot_black_256x256.png" />
|
||||||
|
<h1>WELCOME</h1>
|
||||||
|
<hr>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate a Nextcloud instance, a free and open-source collaboration platform analoguous to Google Drive. We aim to eventually incorporate as a cooperative to create a digital infrastructure that is by and for its users as an alternative to the siloed and privatized internet of today. Members fund our operations and decide how to set our community policies, steward our data, and manage our shared technologies. Members also provide the labor to run ilot at all levels.
|
||||||
|
|
||||||
|
The project is currently in beta, as there is still a lot of work left to do. While the technical infrastructure is setup and stable, the governance and community guidelines are still a work in progress. If you are interested in joining ilot, visit our [[registration form|join]].
|
||||||
|
|
||||||
|
ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and immigration studies sudent association of UQAM, wanted to create its own digital infrastructure. Since then, we have worked toward the goal of making the project useful to other organisations and individuals.
|
||||||
|
|
||||||
|
## Learn more
|
||||||
|
|
||||||
|
To learn more please visit some of the pages:
|
||||||
|
|
||||||
|
[[Platforms]] - The online spaces we use and manage
|
78
index.pot
Normal file
|
@ -0,0 +1,78 @@
|
||||||
|
# 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-11 14:44-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/ilot_black_256x256.png\" />\n"
|
||||||
|
" <h1>WELCOME</h1>\n"
|
||||||
|
" <hr>\n"
|
||||||
|
"</header>\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[ilot|https://ilot.io]] is a cooperative corner of the internet. We operate "
|
||||||
|
"a Nextcloud instance, a free and open-source collaboration platform "
|
||||||
|
"analoguous to Google Drive. We aim to eventually incorporate as a "
|
||||||
|
"cooperative to create a digital infrastructure that is by and for its users "
|
||||||
|
"as an alternative to the siloed and privatized internet of today. Members "
|
||||||
|
"fund our operations and decide how to set our community policies, steward "
|
||||||
|
"our data, and manage our shared technologies. Members also provide the labor "
|
||||||
|
"to run ilot at all levels."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"The project is currently in beta, as there is still a lot of work left to "
|
||||||
|
"do. While the technical infrastructure is setup and stable, the governance "
|
||||||
|
"and community guidelines are still a work in progress. If you are interested "
|
||||||
|
"in joining ilot, visit our [[registration form|join]]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"ilot was started in 2021 when AESA-CIRI, the sociology, anthropology and "
|
||||||
|
"immigration studies sudent association of UQAM, wanted to create its own "
|
||||||
|
"digital infrastructure. Since then, we have worked toward the goal of making "
|
||||||
|
"the project useful to other organisations and individuals."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Title ##
|
||||||
|
#, markdown-text, no-wrap
|
||||||
|
msgid "Learn more"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text
|
||||||
|
msgid "To learn more please visit some of the pages:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text, no-wrap
|
||||||
|
msgid "[[Platforms]] - The online spaces we use and manage \n"
|
||||||
|
msgstr ""
|
BIN
join.fr.mo
325
join.fr.po
Normal file
|
@ -0,0 +1,325 @@
|
||||||
|
# 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: ilot.io\n"
|
||||||
|
"POT-Creation-Date: 2025-04-03 18:26-0400\n"
|
||||||
|
"PO-Revision-Date: 2025-04-03 18:47-0400\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: 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.5\n"
|
||||||
|
|
||||||
|
#. type: Content of: outside any tag (error?)
|
||||||
|
msgid "[[!meta title=\"Join\"]] [[!inline pages=\"join/join-en\" raw=\"yes\"]]"
|
||||||
|
msgstr ""
|
||||||
|
"[[!meta title=\"Se joindre\"]] [[!inline pages=\"join/join-fr\" raw=\"yes\"]]"
|
||||||
|
|
||||||
|
#. type: Content of: <header><h1>
|
||||||
|
msgid "Registration Form"
|
||||||
|
msgstr "Formulaire d'inscription"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><p>
|
||||||
|
msgid ""
|
||||||
|
"If you would like to join ilot, please fill out this form with your details, "
|
||||||
|
"and someone will get back to you shortly via email. Individuals, "
|
||||||
|
"cooperatives, and other organizations that identify with the cooperative "
|
||||||
|
"movement are welcome to join. If you receive no contact within seven days of "
|
||||||
|
"registration, please send an email to [[support@ilot.io|mailto:support@ilot."
|
||||||
|
"io]]."
|
||||||
|
msgstr ""
|
||||||
|
"Si vous souhaitez rejoindre l'ilot, veuillez remplir ce formulaire avec vos "
|
||||||
|
"coordonnées, et quelqu'un vous répondra rapidement par courrier "
|
||||||
|
"électronique. Les individus, les coopératives et les autres organisations "
|
||||||
|
"qui s'identifient au mouvement coopératif sont les bienvenus. Si vous n'êtes "
|
||||||
|
"pas contacté dans les sept jours suivant votre inscription, veuillez envoyer "
|
||||||
|
"un courriel à [[support@ilot.io|mailto:support@ilot.io]]."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><noscript><p>
|
||||||
|
msgid ""
|
||||||
|
"You need JavaScript to complete this form. Alternatively, you can send an "
|
||||||
|
"email [[support@ilot.io|mailto:support@ilot.io]] to register"
|
||||||
|
msgstr ""
|
||||||
|
"Vous avez besoin de JavaScript pour remplir ce formulaire. Vous pouvez "
|
||||||
|
"également envoyer un courriel [[support@ilot.io|mailto:support@ilot.io]] "
|
||||||
|
"pour vous inscrire"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><h2>
|
||||||
|
msgid "Basic Info:"
|
||||||
|
msgstr "Informations de base:"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><div><input>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"name\">Name <i>(optional)</i></label> <input id=\"name\" "
|
||||||
|
"name=\"name\" type=\"text\" maxlength=\"40\">"
|
||||||
|
msgstr ""
|
||||||
|
"<label for=\"name\">Nom <i>(optionnel)</i></label> <input id=\"name\" "
|
||||||
|
"name=\"name\" type=\"text\" maxlength=\"40\">"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><div><input><p>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"email\">Contact email address</label> <input id=\"email\" "
|
||||||
|
"name=\"email\" type=\"email\" required></p>"
|
||||||
|
msgstr ""
|
||||||
|
"<label for=\"email\">Adresse électronique de contact</label> <input "
|
||||||
|
"id=\"email\" name=\"email\" type=\"email\" required></p>"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"In up to 500 characters, can you tell us a bit about yourself? For instance, "
|
||||||
|
"why you wish to join ilot, and what hopes or aspirations you have for the "
|
||||||
|
"site and/or your participation? We’d like to build a picture of how our "
|
||||||
|
"members want to use the site."
|
||||||
|
msgstr ""
|
||||||
|
"En 500 caractères maximum, pouvez-vous nous parler un peu de vous ? Par "
|
||||||
|
"exemple, pourquoi vous souhaitez rejoindre l'ilot, et quels sont vos espoirs "
|
||||||
|
"ou vos aspirations pour le site et/ou votre participation ? Nous aimerions "
|
||||||
|
"nous faire une idée de la manière dont nos membres souhaitent utiliser le "
|
||||||
|
"site."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"<textarea id=\"about-me\" name=\"about-me\" rows=\"10\" maxlength=\"500\"></"
|
||||||
|
"textarea>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"How did you find out about ilot? We want to better understand how people are "
|
||||||
|
"finding us."
|
||||||
|
msgstr ""
|
||||||
|
"Comment avez-vous connu ilot ? Nous voulons mieux comprendre comment les "
|
||||||
|
"gens nous trouvent."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"<textarea id=\"how-found\" name=\"how-found\" rows=\"10\" "
|
||||||
|
"maxlength=\"500\"></textarea>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><h2>
|
||||||
|
msgid "Open Collective:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"Contributing through [[Open Collective|https://opencollective.com/ilot]] is "
|
||||||
|
"a strongly encouraged. We use this platform to manage our finances, thus "
|
||||||
|
"applicants must have an existing Open Collective profile, which can be set "
|
||||||
|
"up [[here|https://opencollective.com/create-account]]."
|
||||||
|
msgstr ""
|
||||||
|
"Faire une contribution à travers [[Open Collective|https://opencollective."
|
||||||
|
"com/ilot]] est fortement encouragé. Nous utilisons cette plateforme pour "
|
||||||
|
"gérer nos finances. Or, vous devez avoir un profil Open Collective, qui peut "
|
||||||
|
"être créé [[ici|https://opencollective.com/create-account]]."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"oc-user\">Link to your OpenCollective profile</label> <input "
|
||||||
|
"id=\"oc-user\" name=\"oc-user\" type=\"text\" required maxlength=\"50\"></p>"
|
||||||
|
msgstr ""
|
||||||
|
"<label for=\"oc-user\">Lien de votre profil Open Collective</label> <input "
|
||||||
|
"id=\"oc-user\" name=\"oc-user\" type=\"text\" required maxlength=\"50\"></p>"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><h2>
|
||||||
|
msgid "Code of Conduct:"
|
||||||
|
msgstr "Code de conduite:"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p>
|
||||||
|
msgid ""
|
||||||
|
"New members must also agree to our [[Code of Conduct|meta/code-of-conduct]] "
|
||||||
|
"and must be over the age of consent."
|
||||||
|
msgstr ""
|
||||||
|
"Les nouveaux membres doivent également accepter notre [[Code de conduite|"
|
||||||
|
"meta/code-de-conduite]] et doivent avoir atteint l'âge du consentement."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p>
|
||||||
|
msgid ""
|
||||||
|
"<input type=\"checkbox\" id=\"agree-to-terms\" name=\"agree-to-terms\" "
|
||||||
|
"value=\"agree-to-terms\" required> I am over 18, and have read, understood "
|
||||||
|
"and agree to the terms of use and engagement as written in the [[Code of "
|
||||||
|
"Conduct|meta/code-of-conduct]]. A summary of the code is below; please be "
|
||||||
|
"sure to review the full Code via the link.</p>"
|
||||||
|
msgstr ""
|
||||||
|
"<input type=\"checkbox\" id=\"agree-to-terms\" name=\"agree-to-terms\" "
|
||||||
|
"value=\"agree-to-terms\" required> J'ai plus de 18 ans et j'ai lu, compris "
|
||||||
|
"et accepté les conditions d'utilisation et d'engagement énoncées dans le "
|
||||||
|
"[[Code de conduite|meta/code-of-conduct]]. Vous trouverez ci-dessous un "
|
||||||
|
"résumé du code ; n'oubliez pas de consulter le code complet en cliquant sur "
|
||||||
|
"le lien.</p>"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"The Code of Conduct is a living document that outlines acceptable behaviour "
|
||||||
|
"when members use ilot's Nextcloud and all other spaces governed by the co-"
|
||||||
|
"op. ilot adopts the “co-op values”: self-responsibility, democracy, "
|
||||||
|
"equality, equity, and solidarity. Our members believe in the ethical values "
|
||||||
|
"of honesty, openness, social responsibility, and caring for others. We also "
|
||||||
|
"follow the rest of the ICA co-op principles."
|
||||||
|
msgstr ""
|
||||||
|
"Le code de conduite est un document évolutif qui décrit les comportements "
|
||||||
|
"acceptables lorsque les membres utilisent Nextcloud et tous les autres "
|
||||||
|
"espaces régis par la coopérative. Ilot adopte les \"valeurs de la "
|
||||||
|
"coopérative\" : l'auto-responsabilité, la démocratie, l'égalité, l'équité et "
|
||||||
|
"la solidarité. Nos membres croient aux valeurs éthiques que sont "
|
||||||
|
"l'honnêteté, l'ouverture, la responsabilité sociale et l'attention portée "
|
||||||
|
"aux autres. Nous suivons également les autres principes coopératifs de l'ACI."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"We welcome anyone able to use our services and willing to accept the "
|
||||||
|
"responsibilities of membership, regardless of qualities such as gender "
|
||||||
|
"identity or expression, sexual orientation, disability, mental illness, "
|
||||||
|
"neuro(a)typicality, physical appearance, body size, age, race, nationality, "
|
||||||
|
"ethnicity, socioeconomic status, family structure, spirituality, religion "
|
||||||
|
"(or lack thereof), education, or other personal traits."
|
||||||
|
msgstr ""
|
||||||
|
"Nous accueillons toute personne capable d'utiliser nos services et prête à "
|
||||||
|
"accepter les responsabilités liées à l'adhésion, indépendamment de qualités "
|
||||||
|
"telles que l'identité ou l'expression de genre, l'orientation sexuelle, le "
|
||||||
|
"handicap, la maladie mentale, la neuro(a)typicité, l'apparence physique, la "
|
||||||
|
"taille, l'âge, la race, la nationalité, l'ethnicité, le statut socio-"
|
||||||
|
"économique, la structure familiale, la spiritualité, la religion (ou "
|
||||||
|
"l'absence de religion), l'éducation ou d'autres traits personnels."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"We particularly celebrate diversity and do not tolerate bigotry, prejudice "
|
||||||
|
"or supremacy of any kind. Diverse opinions on politics, religion, and other "
|
||||||
|
"matters are welcome as long as they align with our core values. Let there be "
|
||||||
|
"no confusion, ilot is anti-racist, anti-fascist, and anti-transphobic. "
|
||||||
|
"Moderators will take action on posts that contravene this Code of Conduct."
|
||||||
|
msgstr ""
|
||||||
|
"Nous célébrons tout particulièrement la diversité et ne tolérons aucune "
|
||||||
|
"forme de sectarisme, de préjugé ou de suprématie. Les opinions diverses sur "
|
||||||
|
"la politique, la religion et d'autres sujets sont les bienvenues tant "
|
||||||
|
"qu'elles sont en accord avec nos valeurs fondamentales. Qu'il n'y ait pas de "
|
||||||
|
"confusion, ilot est antiraciste, antifasciste et anti-transphobe. Les "
|
||||||
|
"modérateurs prendront des mesures à l'égard des messages qui contreviennent "
|
||||||
|
"à ce code de conduite."
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><h2>
|
||||||
|
msgid "Are you a robot?"
|
||||||
|
msgstr "Êtes-vous un robot ?"
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"math-spam-trap\">What is two plus seven?</label> <input "
|
||||||
|
"id=\"math-spam-trap\" name=\"math-spam-trap\" type=\"text\" required "
|
||||||
|
"maxlength=\"50\"></p> <input type=\"button\" value=\"Submit\" id = "
|
||||||
|
"\"submit\" onClick = \"createIssue()\"> </form>"
|
||||||
|
msgstr ""
|
||||||
|
"<label for=\"math-spam-trap\">Qu'est-ce que deux plus sept ?</label> <input "
|
||||||
|
"id=\"math-spam-trap\" name=\"math-spam-trap\" type=\"text\" required "
|
||||||
|
"maxlength=\"50\"></p> <input type=\"button\" value=\"Soumettre\" id = "
|
||||||
|
"\"submit\" onClick = \"createIssue()\"> </form>"
|
||||||
|
|
||||||
|
#~ msgid "[[!meta title=\"Join\"]]"
|
||||||
|
#~ msgstr "[[!meta title=\"Se joindre\"]]"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "async function checkDuplicate() { var url='https://lab.ilot.io/api/v4/"
|
||||||
|
#~ "projects/99/issues'; var email = document.getElementById(\"email\")."
|
||||||
|
#~ "value; const response = await fetch(url, { headers: { 'PRIVATE-TOKEN': "
|
||||||
|
#~ "'glpat-RaoZSW_3XMhkGr19k6Wv', 'Content-Type': 'application/json', }, }) "
|
||||||
|
#~ "const result = await response.json(); let index = result .findIndex(item "
|
||||||
|
#~ "=> item.title === email); if (index !== -1) { return true; } else "
|
||||||
|
#~ "{ return false; } } async function createIssue() { var baseurl = 'https://"
|
||||||
|
#~ "lab.ilot.io/api/v4/projects/99/issues?&labels=Request'; var mathspamtrap "
|
||||||
|
#~ "= document.getElementById(\"math-spam-trap\").value; var agreetoterms = "
|
||||||
|
#~ "document.getElementById(\"agree-to-terms\").checked; var email = document."
|
||||||
|
#~ "getElementById(\"email\").value; if(!agreetoterms) { alert(\"Registration "
|
||||||
|
#~ "requires agreement of Code of Conduct\"); return false; } if(!email) "
|
||||||
|
#~ "{ alert(\"Email cannot be empty\"); return false; } if(mathspamtrap != "
|
||||||
|
#~ "\"9\") { alert(\"Wrong math answer\"); return false; } if(await "
|
||||||
|
#~ "checkDuplicate(email) === true) { alert(\"This email address has already "
|
||||||
|
#~ "requested an account\"); return false; } var name = document."
|
||||||
|
#~ "getElementById(\"name\").value; var name = name.replace (/^/,'Name: '); "
|
||||||
|
#~ "var aboutme = document.getElementById(\"about-me\").value; var aboutme = "
|
||||||
|
#~ "aboutme.replace (/^/,'About me: '); var aboutme = aboutme.replace(/\\r?"
|
||||||
|
#~ "\\n/g, \"%0A%0A\"); var howfound = document.getElementById(\"how-found\")."
|
||||||
|
#~ "value; var howfound = howfound.replace (/^/,'How I found ilot: '); var "
|
||||||
|
#~ "howfound = howfound.replace(/\\r?\\n/g, \"%0A%0A\"); var ocuser = "
|
||||||
|
#~ "document.getElementById(\"oc-user\").value; var ocuser = ocuser.replace (/"
|
||||||
|
#~ "^/,'OpenCollective Profile: '); var description = name + \"%0A%0A\" + "
|
||||||
|
#~ "aboutme + \"%0A%0A\" + howfound + \"%0A%0A\" + ocuser; var url = baseurl."
|
||||||
|
#~ "concat(\"&title=\", email, \"&description=\", description); console."
|
||||||
|
#~ "log('Description:', description); fetch(url, { method: 'POST', headers: "
|
||||||
|
#~ "{ 'PRIVATE-TOKEN': 'glpat-RaoZSW_3XMhkGr19k6Wv', 'Content-Type': "
|
||||||
|
#~ "'application/json', }, }) .then(response => response.json()) ."
|
||||||
|
#~ "then(result => { console.log('Success:', result); alert(\"Request "
|
||||||
|
#~ "submitted. A working group member will process your registration shortly. "
|
||||||
|
#~ "If you receive no contact within seven days of registration, please send "
|
||||||
|
#~ "an email to support@ilot.io\"); }) .catch(error => { console."
|
||||||
|
#~ "error('Error:', error) }); }"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "async function checkDuplicate() { var url='https://lab.ilot.io/api/v4/"
|
||||||
|
#~ "projects/99/issues'; var email = document.getElementById(\"email\")."
|
||||||
|
#~ "value; const response = await fetch(url, { headers: { 'PRIVATE-TOKEN': "
|
||||||
|
#~ "'glpat-RaoZSW_3XMhkGr19k6Wv', 'Content-Type': 'application/json', }, }) "
|
||||||
|
#~ "const result = await response.json(); let index = result .findIndex(item "
|
||||||
|
#~ "=> item.title === email); if (index !== -1) { return true; } else "
|
||||||
|
#~ "{ return false; } } async function createIssue() { var baseurl = 'https://"
|
||||||
|
#~ "lab.ilot.io/api/v4/projects/99/issues?&labels=Request'; var mathspamtrap "
|
||||||
|
#~ "= document.getElementById(\"math-spam-trap\").value; var agreetoterms = "
|
||||||
|
#~ "document.getElementById(\"agree-to-terms\").checked; var email = document."
|
||||||
|
#~ "getElementById(\"email\").value; if(!agreetoterms) { alert(\"Registration "
|
||||||
|
#~ "requires agreement of Code of Conduct\"); return false; } if(!email) "
|
||||||
|
#~ "{ alert(\"Courriel ne peut pas être vide\"); return false; } "
|
||||||
|
#~ "if(mathspamtrap != \"9\") { alert(\"Mauvaise réponse mathématique\"); "
|
||||||
|
#~ "return false; } if(await checkDuplicate(email) === true) { alert(\"Ce "
|
||||||
|
#~ "courriel a déjà fait une demande de compte\"); return false; } var name = "
|
||||||
|
#~ "document.getElementById(\"name\").value; var name = name.replace (/"
|
||||||
|
#~ "^/,'Name: '); var aboutme = document.getElementById(\"about-me\").value; "
|
||||||
|
#~ "var aboutme = aboutme.replace (/^/,'About me: '); var aboutme = aboutme."
|
||||||
|
#~ "replace(/\\r?\\n/g, \"%0A%0A\"); var howfound = document."
|
||||||
|
#~ "getElementById(\"how-found\").value; var howfound = howfound.replace (/"
|
||||||
|
#~ "^/,'How I found ilot: '); var howfound = howfound.replace(/\\r?\\n/g, "
|
||||||
|
#~ "\"%0A%0A\"); var ocuser = document.getElementById(\"oc-user\").value; var "
|
||||||
|
#~ "ocuser = ocuser.replace (/^/,'OpenCollective Profile: '); var description "
|
||||||
|
#~ "= name + \"%0A%0A\" + aboutme + \"%0A%0A\" + howfound + \"%0A%0A\" + "
|
||||||
|
#~ "ocuser; var url = baseurl.concat(\"&title=\", email, \"&description=\", "
|
||||||
|
#~ "description); console.log('Description:', description); fetch(url, "
|
||||||
|
#~ "{ method: 'POST', headers: { 'PRIVATE-TOKEN': 'glpat-"
|
||||||
|
#~ "RaoZSW_3XMhkGr19k6Wv', 'Content-Type': 'application/json', }, }) ."
|
||||||
|
#~ "then(response => response.json()) .then(result => { console."
|
||||||
|
#~ "log('Success:', result); alert(\"Demande soumise. Un membre du groupe de "
|
||||||
|
#~ "travail traitera votre inscription dans les plus brefs délais. Si vous "
|
||||||
|
#~ "n'êtes pas contacté dans les sept jours suivant votre inscription, "
|
||||||
|
#~ "veuillez envoyer un courriel à support@ilot.io.\"); }) .catch(error => "
|
||||||
|
#~ "{ console.error('Error:', error) }); }"
|
||||||
|
|
||||||
|
#~ msgid "alert(\"Email cannot be empty\")"
|
||||||
|
#~ msgstr "alert(\"Le courriel ne peut pas être vide\")"
|
||||||
|
|
||||||
|
#~ msgid "Registration requires agreement of Code of Conduct"
|
||||||
|
#~ msgstr "Inscription nécéssite votre accord avec le Code de conduite"
|
||||||
|
|
||||||
|
#~ msgid "Email cannot be empty"
|
||||||
|
#~ msgstr "Vous devez fournir un courriel"
|
||||||
|
|
||||||
|
#~ msgid "Empty field should be empty"
|
||||||
|
#~ msgstr "L'espace vide devrait rester vide"
|
||||||
|
|
||||||
|
#~ msgid "Wrong math answer"
|
||||||
|
#~ msgstr "Mauvaise réponse mathématique"
|
||||||
|
|
||||||
|
#~ msgid "This email address has already requested an account"
|
||||||
|
#~ msgstr "Cette adresse e-mail a déjà demandé un compte"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "Request submitted. A working group member will process your registration "
|
||||||
|
#~ "shortly. If you receive no contact within seven days of registration, "
|
||||||
|
#~ "please send an email to support@ilot.io"
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Demande soumise. Un membre du groupe de travail traitera votre "
|
||||||
|
#~ "inscription dans les plus brefs délais. Si vous n'êtes pas contacté dans "
|
||||||
|
#~ "les sept jours suivant votre inscription, veuillez envoyer un courriel à "
|
||||||
|
#~ "support@ilot.io."
|
54
join.html
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
[[!meta title="Join"]]
|
||||||
|
|
||||||
|
[[!inline pages="join/join-en" raw="yes"]]
|
||||||
|
|
||||||
|
<header class="text-center">
|
||||||
|
<h1 class="post-title">Registration Form</h1>
|
||||||
|
</header>
|
||||||
|
<hr>
|
||||||
|
|
||||||
|
<div class="post-content clearfix">
|
||||||
|
|
||||||
|
<p>If you would like to join ilot, please fill out this form with your details, and someone will get back to you shortly via email. Individuals, cooperatives, and other organizations that identify with the cooperative movement are welcome to join. If you receive no contact within seven days of registration, please send an email to [[support@ilot.io|mailto:support@ilot.io]].</p>
|
||||||
|
<div>
|
||||||
|
|
||||||
|
<noscript><p>You need JavaScript to complete this form. Alternatively, you can send an email [[support@ilot.io|mailto:support@ilot.io]] to register</p></noscript>
|
||||||
|
|
||||||
|
<form>
|
||||||
|
|
||||||
|
<h2 id="basic-info">Basic Info:</h2>
|
||||||
|
<div class="formgroup">
|
||||||
|
<label for="name">Name <i>(optional)</i></label>
|
||||||
|
<input id="name" name="name" type="text" maxlength="40">
|
||||||
|
|
||||||
|
<p><label for="email">Contact email address</label>
|
||||||
|
<input id="email" name="email" type="email" required></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<p>In up to 500 characters, can you tell us a bit about yourself? For instance, why you wish to join ilot, and what hopes or aspirations you have for the site and/or your participation? We’d like to build a picture of how our members want to use the site.</p>
|
||||||
|
<p><textarea id="about-me" name="about-me" rows="10" maxlength="500"></textarea></p>
|
||||||
|
<p>How did you find out about ilot? We want to better understand how people are finding us.</p>
|
||||||
|
<p><textarea id="how-found" name="how-found" rows="10" maxlength="500"></textarea></p>
|
||||||
|
|
||||||
|
<h2 id="open-collective">Open Collective:</h2>
|
||||||
|
<p>Contributing through [[Open Collective|https://opencollective.com/ilot]] is a strongly encouraged. We use this platform to manage our finances, thus applicants must have an existing Open Collective profile, which can be set up [[here|https://opencollective.com/create-account]].</p>
|
||||||
|
<p><label for="oc-user">Link to your OpenCollective profile</label>
|
||||||
|
<input id="oc-user" name="oc-user" type="text" required maxlength="50"></p>
|
||||||
|
|
||||||
|
<h2 id="code-of-conduct">Code of Conduct:</h2>
|
||||||
|
<p>New members must also agree to our [[Code of Conduct|meta/code-of-conduct]] and must be over the age of consent.</p>
|
||||||
|
<p><input type="checkbox" id="agree-to-terms" name="agree-to-terms" value="agree-to-terms" required> I am over 18, and have read, understood and agree to the terms of use and engagement as written in the [[Code of Conduct|meta/code-of-conduct]]. A summary of the code is below; please be sure to review the full Code via the link.</p>
|
||||||
|
<p>The Code of Conduct is a living document that outlines acceptable behaviour when members use ilot's Nextcloud and all other spaces governed by the co-op. ilot adopts the “co-op values”: self-responsibility, democracy, equality, equity, and solidarity. Our members believe in the ethical values of honesty, openness, social responsibility, and caring for others. We also follow the rest of the ICA co-op principles. </p>
|
||||||
|
<p>We welcome anyone able to use our services and willing to accept the responsibilities of membership, regardless of qualities such as gender identity or expression, sexual orientation, disability, mental illness, neuro(a)typicality, physical appearance, body size, age, race, nationality, ethnicity, socioeconomic status, family structure, spirituality, religion (or lack thereof), education, or other personal traits.</p>
|
||||||
|
<p>We particularly celebrate diversity and do not tolerate bigotry, prejudice or supremacy of any kind. Diverse opinions on politics, religion, and other matters are welcome as long as they align with our core values. Let there be no confusion, ilot is anti-racist, anti-fascist, and anti-transphobic. Moderators will take action on posts that contravene this Code of Conduct.</p>
|
||||||
|
|
||||||
|
<h2 id="are-you-a-robot">Are you a robot?</h2>
|
||||||
|
<p><label for="math-spam-trap">What is two plus seven?</label>
|
||||||
|
<input id="math-spam-trap" name="math-spam-trap" type="text" required maxlength="50"></p>
|
||||||
|
<input type="button" value="Submit" id = "submit"
|
||||||
|
onClick = "createIssue()">
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
162
join.pot
Normal file
|
@ -0,0 +1,162 @@
|
||||||
|
# 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: 2025-04-03 18:27-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: outside any tag (error?)
|
||||||
|
msgid "[[!meta title=\"Join\"]] [[!inline pages=\"join/join-en\" raw=\"yes\"]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <header><h1>
|
||||||
|
msgid "Registration Form"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><p>
|
||||||
|
msgid ""
|
||||||
|
"If you would like to join ilot, please fill out this form with your details, "
|
||||||
|
"and someone will get back to you shortly via email. Individuals, "
|
||||||
|
"cooperatives, and other organizations that identify with the cooperative "
|
||||||
|
"movement are welcome to join. If you receive no contact within seven days of "
|
||||||
|
"registration, please send an email to "
|
||||||
|
"[[support@ilot.io|mailto:support@ilot.io]]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><noscript><p>
|
||||||
|
msgid ""
|
||||||
|
"You need JavaScript to complete this form. Alternatively, you can send an "
|
||||||
|
"email [[support@ilot.io|mailto:support@ilot.io]] to register"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><h2>
|
||||||
|
msgid "Basic Info:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><div><input>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"name\">Name <i>(optional)</i></label> <input id=\"name\" "
|
||||||
|
"name=\"name\" type=\"text\" maxlength=\"40\">"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><div><input><p>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"email\">Contact email address</label> <input id=\"email\" "
|
||||||
|
"name=\"email\" type=\"email\" required></p>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"In up to 500 characters, can you tell us a bit about yourself? For instance, "
|
||||||
|
"why you wish to join ilot, and what hopes or aspirations you have for the "
|
||||||
|
"site and/or your participation? We’d like to build a picture of how our "
|
||||||
|
"members want to use the site."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"<textarea id=\"about-me\" name=\"about-me\" rows=\"10\" "
|
||||||
|
"maxlength=\"500\"></textarea>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"How did you find out about ilot? We want to better understand how people are "
|
||||||
|
"finding us."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"<textarea id=\"how-found\" name=\"how-found\" rows=\"10\" "
|
||||||
|
"maxlength=\"500\"></textarea>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><h2>
|
||||||
|
msgid "Open Collective:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"Contributing through [[Open Collective|https://opencollective.com/ilot]] is "
|
||||||
|
"a strongly encouraged. We use this platform to manage our finances, thus "
|
||||||
|
"applicants must have an existing Open Collective profile, which can be set "
|
||||||
|
"up [[here|https://opencollective.com/create-account]]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"oc-user\">Link to your OpenCollective profile</label> <input "
|
||||||
|
"id=\"oc-user\" name=\"oc-user\" type=\"text\" required maxlength=\"50\"></p>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><h2>
|
||||||
|
msgid "Code of Conduct:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p>
|
||||||
|
msgid ""
|
||||||
|
"New members must also agree to our [[Code of Conduct|meta/code-of-conduct]] "
|
||||||
|
"and must be over the age of consent."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p>
|
||||||
|
msgid ""
|
||||||
|
"<input type=\"checkbox\" id=\"agree-to-terms\" name=\"agree-to-terms\" "
|
||||||
|
"value=\"agree-to-terms\" required> I am over 18, and have read, understood "
|
||||||
|
"and agree to the terms of use and engagement as written in the [[Code of "
|
||||||
|
"Conduct|meta/code-of-conduct]]. A summary of the code is below; please be "
|
||||||
|
"sure to review the full Code via the link.</p>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"The Code of Conduct is a living document that outlines acceptable behaviour "
|
||||||
|
"when members use ilot's Nextcloud and all other spaces governed by the "
|
||||||
|
"co-op. ilot adopts the “co-op values”: self-responsibility, democracy, "
|
||||||
|
"equality, equity, and solidarity. Our members believe in the ethical values "
|
||||||
|
"of honesty, openness, social responsibility, and caring for others. We also "
|
||||||
|
"follow the rest of the ICA co-op principles."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"We welcome anyone able to use our services and willing to accept the "
|
||||||
|
"responsibilities of membership, regardless of qualities such as gender "
|
||||||
|
"identity or expression, sexual orientation, disability, mental illness, "
|
||||||
|
"neuro(a)typicality, physical appearance, body size, age, race, nationality, "
|
||||||
|
"ethnicity, socioeconomic status, family structure, spirituality, religion "
|
||||||
|
"(or lack thereof), education, or other personal traits."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"We particularly celebrate diversity and do not tolerate bigotry, prejudice "
|
||||||
|
"or supremacy of any kind. Diverse opinions on politics, religion, and other "
|
||||||
|
"matters are welcome as long as they align with our core values. Let there be "
|
||||||
|
"no confusion, ilot is anti-racist, anti-fascist, and "
|
||||||
|
"anti-transphobic. Moderators will take action on posts that contravene this "
|
||||||
|
"Code of Conduct."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><h2>
|
||||||
|
msgid "Are you a robot?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <hr><div><div><form><p><p><p>
|
||||||
|
msgid ""
|
||||||
|
"<label for=\"math-spam-trap\">What is two plus seven?</label> <input "
|
||||||
|
"id=\"math-spam-trap\" name=\"math-spam-trap\" type=\"text\" required "
|
||||||
|
"maxlength=\"50\"></p> <input type=\"button\" value=\"Submit\" id = "
|
||||||
|
"\"submit\" onClick = \"createIssue()\"> </form>"
|
||||||
|
msgstr ""
|
|
@ -1,225 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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>Join - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><span class="selflink">Join</span></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src=/join.js></script>
|
|
||||||
|
|
||||||
<header class="text-center">
|
|
||||||
<h1 class="post-title">Registration Form</h1>
|
|
||||||
</header>
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<div class="post-content clearfix">
|
|
||||||
|
|
||||||
<p>If you would like to join ilot, please fill out this form with your details, and someone will get back to you shortly via email. Individuals, cooperatives, and other organizations that identify with the cooperative movement are welcome to join. If you receive no contact within seven days of registration, please send an email to <a href="mailto:support@ilot.io">support@ilot.io</a>.</p>
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<noscript><p>You need JavaScript to complete this form. Alternatively, you can send an email <a href="mailto:support@ilot.io">support@ilot.io</a> to register</p></noscript>
|
|
||||||
|
|
||||||
<form>
|
|
||||||
|
|
||||||
<h2 id="basic-info">Basic Info:</h2>
|
|
||||||
<div class="formgroup">
|
|
||||||
<label for="name">Name <i>(optional)</i></label>
|
|
||||||
<input id="name" name="name" type="text" maxlength="40">
|
|
||||||
<label for="emptyfield">This should be left unchanged</label>
|
|
||||||
<input id="emptyfield" name="emptyfield" type="text" maxlength="40">
|
|
||||||
|
|
||||||
<p><label for="email">Contact email address</label>
|
|
||||||
<input id="email" name="email" type="email" required></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<p>In up to 500 characters, can you tell us a bit about yourself? For instance, why you wish to join ilot, and what hopes or aspirations you have for the site and/or your participation? We’d like to build a picture of how our members want to use the site.</p>
|
|
||||||
<p><textarea id="about-me" name="about-me" rows="10" maxlength="500"></textarea></p>
|
|
||||||
<p>How did you find out about ilot? We want to better understand how people are finding us.</p>
|
|
||||||
<p><textarea id="how-found" name="how-found" rows="10" maxlength="500"></textarea></p>
|
|
||||||
|
|
||||||
<!-- Hide until we get an OpenCollective account going
|
|
||||||
<h2 id="open-collective">Open Collective:</h2>
|
|
||||||
<p>Contributing through <a href="https://opencollective.com/ilotio">Open Collective</a> is a condition
|
|
||||||
of membership, so applicants must have an existing Open Collective profile, which can be set up <a href="https://opencollective.com/create-account">here</a>.</p>
|
|
||||||
<p><label for="oc-user">Link to your OpenCollective profile</label>
|
|
||||||
<input id="oc-user" name="oc-user" type="text" required maxlength="50"></p>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<h2 id="code-of-conduct">Code of Conduct:</h2>
|
|
||||||
<p>New members must also agree to our <a href="../meta/code-of-conduct/">Code of Conduct</a> and must be over the age of consent.</p>
|
|
||||||
<p><input type="checkbox" id="agree-to-terms" name="agree-to-terms" value="agree-to-terms" required> I am over 18, and have read, understood and agree to the terms of use and engagement as written in the <a href="../meta/code-of-conduct/">Code of Conduct</a>. A summary of the code is below; please be sure to review the full Code via the link.</p>
|
|
||||||
<p>The Code of Conduct is a living document that outlines acceptable behaviour when members use ilot's Nextcloud and all other spaces governed by the co-op. ilot adopts the “co-op values”: self-responsibility, democracy, equality, equity, and solidarity. Our members believe in the ethical values of honesty, openness, social responsibility, and caring for others. We also follow the rest of the ICA co-op principles. </p>
|
|
||||||
<p>We welcome anyone able to use our services and willing to accept the responsibilities of membership, regardless of qualities such as gender identity or expression, sexual orientation, disability, mental illness, neuro(a)typicality, physical appearance, body size, age, race, nationality, ethnicity, socioeconomic status, family structure, spirituality, religion (or lack thereof), education, or other personal traits.</p>
|
|
||||||
<p>We particularly celebrate diversity and do not tolerate bigotry, prejudice or supremacy of any kind. Diverse opinions on politics, religion, and other matters are welcome as long as they align with our core values. Let there be no confusion, ilot is anti-racist, anti-fascist, and anti-transphobic. Moderators will take action on posts that contravene this Code of Conduct.</p>
|
|
||||||
|
|
||||||
<h2 id="are-you-a-robot">Are you a robot?</h2>
|
|
||||||
<p><label for="math-spam-trap">What is two plus seven?</label>
|
|
||||||
<input id="math-spam-trap" name="math-spam-trap" type="text" required maxlength="50"></p>
|
|
||||||
<input type="button" value="Submit" id = "submit"
|
|
||||||
onClick = "createIssue()">
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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=join&t=Join" alt="tracking pixel to count visitors when Javascript is disabled" />
|
|
||||||
</noscript>
|
|
||||||
-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,264 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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>Se joindre - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><a href="../platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><span class="selflink">Se joindre</span></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<script src=/join.js></script>
|
|
||||||
|
|
||||||
<header class="text-center">
|
|
||||||
<h1 class="post-title">Formulaire d'inscription</h1>
|
|
||||||
</header>
|
|
||||||
<hr>
|
|
||||||
|
|
||||||
<div class="post-content clearfix">
|
|
||||||
|
|
||||||
<p>Si vous souhaitez rejoindre l'ilot, veuillez remplir ce formulaire avec vos
|
|
||||||
coordonnées, et quelqu'un vous répondra rapidement par courrier
|
|
||||||
électronique. Les individus, les coopératives et les autres organisations
|
|
||||||
qui s'identifient au mouvement coopératif sont les bienvenus. Si vous n'êtes
|
|
||||||
pas contacté dans les sept jours suivant votre inscription, veuillez envoyer
|
|
||||||
un courriel à <a href="mailto:support@ilot.io">support@ilot.io</a>.</p>
|
|
||||||
<div>
|
|
||||||
|
|
||||||
<noscript><p>Vous avez besoin de JavaScript pour remplir ce formulaire. Vous pouvez
|
|
||||||
également envoyer un courriel <a href="mailto:support@ilot.io">support@ilot.io</a>
|
|
||||||
pour vous inscrire</p></noscript>
|
|
||||||
|
|
||||||
<form>
|
|
||||||
|
|
||||||
<h2 id="basic-info">Informations de base:</h2>
|
|
||||||
<div class="formgroup">
|
|
||||||
<label for="name">Nom <i>(optionnel)</i></label> <input id="name"
|
|
||||||
name="name" type="text" maxlength="40"> <label for="emptyfield">Veuillez ne
|
|
||||||
pas écrire dans cette espace</label> <input id="emptyfield"
|
|
||||||
name="emptyfield" type="text" maxlength="40">
|
|
||||||
|
|
||||||
<p><label for="email">Adresse électronique de contact</label> <input id="email"
|
|
||||||
name="email" type="email" required></p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<p>En 500 caractères maximum, pouvez-vous nous parler un peu de vous ? Par
|
|
||||||
exemple, pourquoi vous souhaitez rejoindre l'ilot, et quels sont vos espoirs
|
|
||||||
ou vos aspirations pour le site et/ou votre participation ? Nous aimerions
|
|
||||||
nous faire une idée de la manière dont nos membres souhaitent utiliser le
|
|
||||||
site.</p>
|
|
||||||
<p><textarea id="about-me" name="about-me" rows="10"
|
|
||||||
maxlength="500"></textarea></p>
|
|
||||||
<p>Comment avez-vous connu ilot ? Nous voulons mieux comprendre comment les
|
|
||||||
gens nous trouvent.</p>
|
|
||||||
<p><textarea id="how-found" name="how-found" rows="10"
|
|
||||||
maxlength="500"></textarea></p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Hide until we get an OpenCollective account going
|
|
||||||
<h2 id="open-collective">
|
|
||||||
Open Collective:</h2>
|
|
||||||
<p>Contributing through <a href="https://opencollective.com/ilotio">Open Collective</a> is a condition
|
|
||||||
of membership, so applicants must have an existing Open Collective profile, which can be set up <a href="https://opencollective.com/create-account">here</a>.</p>
|
|
||||||
<p><label for="oc-user">Link to your OpenCollective profile</label>
|
|
||||||
<input id="oc-user" name="oc-user" type="text" required maxlength="50"></p>
|
|
||||||
-->
|
|
||||||
<h2 id="code-of-conduct">Code de conduite:</h2>
|
|
||||||
<p>Les nouveaux membres doivent également accepter notre <span class="createlink">Code de
|
|
||||||
conduite</span> et doivent avoir atteint l'âge du
|
|
||||||
consentement.</p>
|
|
||||||
<p><input type="checkbox" id="agree-to-terms" name="agree-to-terms"
|
|
||||||
value="agree-to-terms" required> J'ai plus de 18 ans et j'ai lu, compris et
|
|
||||||
accepté les conditions d'utilisation et d'engagement énoncées dans le <a href="../meta/code-of-conduct/">Code
|
|
||||||
de conduite</a>. Vous trouverez ci-dessous un résumé du
|
|
||||||
code ; n'oubliez pas de consulter le code complet en cliquant sur le
|
|
||||||
lien.</p>
|
|
||||||
<p>Le code de conduite est un document évolutif qui décrit les comportements
|
|
||||||
acceptables lorsque les membres utilisent Nextcloud et tous les autres
|
|
||||||
espaces régis par la coopérative. Ilot adopte les "valeurs de la
|
|
||||||
coopérative" : l'auto-responsabilité, la démocratie, l'égalité, l'équité et
|
|
||||||
la solidarité. Nos membres croient aux valeurs éthiques que sont
|
|
||||||
l'honnêteté, l'ouverture, la responsabilité sociale et l'attention portée
|
|
||||||
aux autres. Nous suivons également les autres principes coopératifs de
|
|
||||||
l'ACI. </p>
|
|
||||||
<p>Nous accueillons toute personne capable d'utiliser nos services et prête à
|
|
||||||
accepter les responsabilités liées à l'adhésion, indépendamment de qualités
|
|
||||||
telles que l'identité ou l'expression de genre, l'orientation sexuelle, le
|
|
||||||
handicap, la maladie mentale, la neuro(a)typicité, l'apparence physique, la
|
|
||||||
taille, l'âge, la race, la nationalité, l'ethnicité, le statut
|
|
||||||
socio-économique, la structure familiale, la spiritualité, la religion (ou
|
|
||||||
l'absence de religion), l'éducation ou d'autres traits personnels.</p>
|
|
||||||
<p>Nous célébrons tout particulièrement la diversité et ne tolérons aucune
|
|
||||||
forme de sectarisme, de préjugé ou de suprématie. Les opinions diverses sur
|
|
||||||
la politique, la religion et d'autres sujets sont les bienvenues tant
|
|
||||||
qu'elles sont en accord avec nos valeurs fondamentales. Qu'il n'y ait pas de
|
|
||||||
confusion, ilot est antiraciste, antifasciste et anti-transphobe. Les
|
|
||||||
modérateurs prendront des mesures à l'égard des messages qui contreviennent
|
|
||||||
à ce code de conduite.</p>
|
|
||||||
|
|
||||||
<h2 id="are-you-a-robot">Êtes-vous un robot ?</h2>
|
|
||||||
<p><label for="math-spam-trap">Qu'est-ce que deux plus sept ?</label> <input
|
|
||||||
id="math-spam-trap" name="math-spam-trap" type="text" required
|
|
||||||
maxlength="50"></p> <input type="button" value="Soumettre" id = "submit"
|
|
||||||
onClick = "createIssue()"> </form>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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=join.fr&t=Se%20joindre" alt="tracking pixel to count visitors when Javascript is disabled" />
|
|
||||||
</noscript>
|
|
||||||
-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,10 +1,11 @@
|
||||||
|
<script>
|
||||||
async function checkDuplicate() {
|
async function checkDuplicate() {
|
||||||
var url='https://lab.ilot.io/api/v4/projects/99/issues';
|
var url='https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
|
||||||
var email = document.getElementById("email").value;
|
var email = document.getElementById("email").value;
|
||||||
|
|
||||||
const response = await fetch(url, {
|
const response = await fetch(url, {
|
||||||
headers: {
|
headers: {
|
||||||
'PRIVATE-TOKEN': 'glpat-RaoZSW_3XMhkGr19k6Wv',
|
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -20,34 +21,28 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
async function createIssue() {
|
async function createIssue() {
|
||||||
var baseurl = 'https://lab.ilot.io/api/v4/projects/99/issues?&labels=Request';
|
var url = 'https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
|
||||||
var emptyfield = document.getElementById("emptyfield").value;
|
|
||||||
var mathspamtrap = document.getElementById("math-spam-trap").value;
|
var mathspamtrap = document.getElementById("math-spam-trap").value;
|
||||||
var agreetoterms = document.getElementById("agree-to-terms").checked;
|
var agreetoterms = document.getElementById("agree-to-terms").checked;
|
||||||
var email = document.getElementById("email").value;
|
var email = document.getElementById("email").value;
|
||||||
|
|
||||||
if(!agreetoterms) {
|
if(!agreetoterms) {
|
||||||
alert("Registration requires agreement of Code of Conduct");
|
alert("Registration requires agreement of Code of Conduct.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!email) {
|
if(!email) {
|
||||||
alert("Email cannot be empty");
|
alert("Email cannot be empty.");
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if(emptyfield) {
|
|
||||||
alert("Empty field should be empty");
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(mathspamtrap != "9") {
|
if(mathspamtrap != "9") {
|
||||||
alert("Wrong math answer");
|
alert("Wrong math answer.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(await checkDuplicate(email) === true) {
|
if(await checkDuplicate(email) === true) {
|
||||||
alert("This email address has already requested an account");
|
alert("This email address has already requested an account.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,31 +50,28 @@
|
||||||
var name = name.replace (/^/,'Name: ');
|
var name = name.replace (/^/,'Name: ');
|
||||||
var aboutme = document.getElementById("about-me").value;
|
var aboutme = document.getElementById("about-me").value;
|
||||||
var aboutme = aboutme.replace (/^/,'About me: ');
|
var aboutme = aboutme.replace (/^/,'About me: ');
|
||||||
var aboutme = aboutme.replace(/\r?\n/g, "%0A%0A");
|
|
||||||
var howfound = document.getElementById("how-found").value;
|
var howfound = document.getElementById("how-found").value;
|
||||||
var howfound = howfound.replace (/^/,'How I found ilot: ');
|
var howfound = howfound.replace (/^/,'How I found ilot: ');
|
||||||
var howfound = howfound.replace(/\r?\n/g, "%0A%0A");
|
var ocuser = document.getElementById("oc-user").value;
|
||||||
// add back on oc is setup
|
var ocuser = ocuser.replace (/^/,'OpenCollective Profile: ');
|
||||||
// var ocuser = document.getElementById("oc-user").value;
|
var description = name + "\n\n" + aboutme + "\n\n" + howfound + "\n\n" + ocuser;
|
||||||
// var ocuser = ocuser.replace (/^/,'OpenCollective Profile: ');
|
|
||||||
// var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound + "%0A%0A" + ocuser;
|
|
||||||
var description = name + "%0A%0A" + aboutme + "%0A%0A" + howfound;
|
|
||||||
var url = baseurl.concat("&title=", email, "&description=", description);
|
|
||||||
console.log('Description:', description);
|
console.log('Description:', description);
|
||||||
|
|
||||||
fetch(url, {
|
fetch(url, {
|
||||||
method: 'POST',
|
method: 'POST',
|
||||||
headers: {
|
headers: {
|
||||||
'PRIVATE-TOKEN': 'glpat-RaoZSW_3XMhkGr19k6Wv',
|
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
},
|
},
|
||||||
|
body: JSON.stringify({ title: email, body: description }),
|
||||||
})
|
})
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(result => {
|
.then(result => {
|
||||||
console.log('Success:', result);
|
console.log('Success:', result);
|
||||||
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io");
|
alert("Request submitted. A working group member will process your registration shortly. If you receive no contact within seven days of registration, please send an email to support@ilot.io.");
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
console.error('Error:', error)
|
console.error('Error:', error)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
</script>
|
77
join/join-fr.html
Normal file
|
@ -0,0 +1,77 @@
|
||||||
|
<script>
|
||||||
|
async function checkDuplicate() {
|
||||||
|
var url='https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
|
||||||
|
var email = document.getElementById("email").value;
|
||||||
|
|
||||||
|
const response = await fetch(url, {
|
||||||
|
headers: {
|
||||||
|
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
})
|
||||||
|
const result = await response.json();
|
||||||
|
let index = result
|
||||||
|
.findIndex(item => item.title === email);
|
||||||
|
|
||||||
|
if (index !== -1) {
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function createIssue() {
|
||||||
|
var url = 'https://forge.ilot.io/api/v1/repos/ilot/registration/issues';
|
||||||
|
var mathspamtrap = document.getElementById("math-spam-trap").value;
|
||||||
|
var agreetoterms = document.getElementById("agree-to-terms").checked;
|
||||||
|
var email = document.getElementById("email").value;
|
||||||
|
|
||||||
|
if(!agreetoterms) {
|
||||||
|
alert("Vous devez être en accord avec notre code de conduite.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!email) {
|
||||||
|
alert("Le courriel ne peut pas être vide.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(mathspamtrap != "9") {
|
||||||
|
alert("Ceci n'est pas la bonne réponse à l'exercise mathématique.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(await checkDuplicate(email) === true) {
|
||||||
|
alert("Ce courriel a déjà fait l'objet d'une demande de compte.");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
var name = document.getElementById("name").value;
|
||||||
|
var name = name.replace (/^/,'Name: ');
|
||||||
|
var aboutme = document.getElementById("about-me").value;
|
||||||
|
var aboutme = aboutme.replace (/^/,'About me: ');
|
||||||
|
var howfound = document.getElementById("how-found").value;
|
||||||
|
var howfound = howfound.replace (/^/,'How I found ilot: ');
|
||||||
|
var ocuser = document.getElementById("oc-user").value;
|
||||||
|
var ocuser = ocuser.replace (/^/,'OpenCollective Profile: ');
|
||||||
|
var description = name + "\n\n" + aboutme + "\n\n" + howfound + "\n\n" + ocuser;
|
||||||
|
console.log('Description:', description);
|
||||||
|
|
||||||
|
fetch(url, {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'authorization': 'token b8d8617bb6049c0e47b7bba5cd0931799f54609c',
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
},
|
||||||
|
body: JSON.stringify({ title: email, body: description }),
|
||||||
|
})
|
||||||
|
.then(response => response.json())
|
||||||
|
.then(result => {
|
||||||
|
console.log('Success:', result);
|
||||||
|
alert("Votre demande a été soumise. Un membre d'un groupe de travail va traiter votre demande sous peu. Si vous ne recevez pas de nouvelle d'ici sept jours, contactez-vous via support@ilot.io.");
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('Error:', error)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
4
jquery.min.js
vendored
7
meta/code-of-conduct.mdwn
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
[[!meta title="Code of Conduct"]]
|
||||||
|
|
||||||
|
The Code of Conduct is a living document that outlines acceptable behaviour when members use ilot's Nextcloud, Mastodon, GitLab, and all other spaces governed by the co-op. ilot adopts the “co-op values”: self-responsibility, democracy, equality, equity, and solidarity. Our members believe in the ethical values of honesty, openness, social responsibility, and caring for others. We also follow the rest of the ICA co-op principles.
|
||||||
|
|
||||||
|
We welcome anyone able to use our services and willing to accept the responsibilities of membership, regardless of qualities such as gender identity or expression, sexual orientation, disability, mental illness, neuro(a)typicality, physical appearance, body size, age, race, nationality, ethnicity, socioeconomic status, family structure, spirituality, religion (or lack thereof), education, or other personal traits.
|
||||||
|
|
||||||
|
We particularly celebrate diversity and do not tolerate bigotry, prejudice or supremacy of any kind. Diverse opinions on politics, religion, and other matters are welcome as long as they align with our core values. Let there be no confusion, ilot is anti-racist, anti-fascist, and anti-transphobic. Moderators will take action on posts that contravene this Code of Conduct.
|
|
@ -1,155 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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>Code of Conduct - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p>The Code of Conduct is a living document that outlines acceptable behaviour when members use ilot's Nextcloud, Mastodon, GitLab, and all other spaces governed by the co-op. ilot adopts the “co-op values”: self-responsibility, democracy, equality, equity, and solidarity. Our members believe in the ethical values of honesty, openness, social responsibility, and caring for others. We also follow the rest of the ICA co-op principles.</p>
|
|
||||||
|
|
||||||
<p>We welcome anyone able to use our services and willing to accept the responsibilities of membership, regardless of qualities such as gender identity or expression, sexual orientation, disability, mental illness, neuro(a)typicality, physical appearance, body size, age, race, nationality, ethnicity, socioeconomic status, family structure, spirituality, religion (or lack thereof), education, or other personal traits.</p>
|
|
||||||
|
|
||||||
<p>We particularly celebrate diversity and do not tolerate bigotry, prejudice or supremacy of any kind. Diverse opinions on politics, religion, and other matters are welcome as long as they align with our core values. Let there be no confusion, ilot is anti-racist, anti-fascist, and anti-transphobic. Moderators will take action on posts that contravene this Code of Conduct.</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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/code-of-conduct&t=Code%20of%20Conduct" alt="tracking pixel to count visitors when Javascript is disabled" />
|
|
||||||
</noscript>
|
|
||||||
-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,147 +1,48 @@
|
||||||
<!DOCTYPE html>
|
[[!meta title="Licensing"]]
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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>Licensing - ilot.io</title>
|
Software
|
||||||
|
========
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
This site was generated with [ikiwiki](https://ikiwiki.info/), which is
|
||||||
<!-- 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="../../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../../">
|
|
||||||
<img alt="ilot.io" src="../../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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
|
||||||
<a href="http://sources.debian.net/src/ikiwiki/sid/debian/copyright/">complete copyright file</a>
|
[complete copyright file](http://sources.debian.net/src/ikiwiki/sid/debian/copyright/)
|
||||||
for more information.</p>
|
for more information.
|
||||||
|
|
||||||
<h1>Design</h1>
|
Design
|
||||||
|
======
|
||||||
|
|
||||||
<p>The design of this site falls under a different license, see the
|
The design of this site falls under a different license, see the
|
||||||
<a href="https://lab.ilot.io/ilot/ikiwiki-bootstrap-ilot">source code</a> for
|
[source code](https://lab.ilot.io/ilot/ikiwiki-bootstrap-ilot) for
|
||||||
the ultimate reference. Right now, it is a
|
the ultimate reference. Right now, it is a
|
||||||
<a href="https://anarc.at/blog/2015-09-09-bootstrap/">modified bootstrap theme</a>
|
[modified bootstrap theme](https://anarc.at/blog/2015-09-09-bootstrap/)
|
||||||
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.</p>
|
anarcat's modifications. Finally, @ 2023-2024 Antoine Martin for my modifications.
|
||||||
|
|
||||||
<h1>Content</h1>
|
Content
|
||||||
|
=======
|
||||||
|
|
||||||
<p>The <em>content</em> of this site is released under a Creative Commons
|
The *content* of this site is released under a Creative Commons
|
||||||
license, as such.</p>
|
license, as such.
|
||||||
|
|
||||||
<!-- copy-paste from https://creativecommons.org/choose/ -->
|
<!-- copy-paste from https://creativecommons.org/choose/ -->
|
||||||
|
|
||||||
<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>
|
<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>.
|
||||||
|
|
||||||
<h1>Updates</h1>
|
Updates
|
||||||
|
=======
|
||||||
|
|
||||||
<ul>
|
* 2024-06-14: initial license under CC-BY-SA
|
||||||
<li>2024-06-14: initial license under CC-BY-SA</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<h1>Complete license</h1>
|
Complete license
|
||||||
|
================
|
||||||
|
|
||||||
<!-- 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>
|
||||||
|
@ -159,9 +60,7 @@ 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>
|
||||||
|
@ -191,11 +90,8 @@ 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>
|
||||||
|
@ -228,32 +124,23 @@ 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">
|
||||||
|
@ -266,71 +153,17 @@ 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <span class="selflink">CC-BY-SA</span>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
BIN
platforms.fr.mo
177
platforms.fr.po
Normal file
|
@ -0,0 +1,177 @@
|
||||||
|
# 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: ilot.io\n"
|
||||||
|
"POT-Creation-Date: 2024-09-08 12:48-0400\n"
|
||||||
|
"PO-Revision-Date: 2025-04-03 18:49-0400\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: 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.5\n"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[!meta title=\"Platforms\"]]\n"
|
||||||
|
msgstr "[[!meta title=\"Platformes\"]]\n"
|
||||||
|
|
||||||
|
#. type: Title #
|
||||||
|
#, no-wrap
|
||||||
|
msgid "[[The Cloud|https://ilot.io/apps/files]]"
|
||||||
|
msgstr "[[Le Cloud|https://ilot.io/apps/files]]"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a "
|
||||||
|
"productivity collaboration platform analogous to Google Drive. An "
|
||||||
|
"**instance** is an autonomous version of a web service. In Nextcloud's case, "
|
||||||
|
"even though there exists an official service maintained by the developpers, "
|
||||||
|
"we are totally independant from them. The only thing that ties us to the "
|
||||||
|
"official instance is that we use the same underlying technology, hosted on "
|
||||||
|
"our own infrastructure."
|
||||||
|
msgstr ""
|
||||||
|
"Le Cloud est une instance de [[Nextcloud|https://nextcloud.com/]], une "
|
||||||
|
"plateforme de collaboration en matière de productivité analogue à Google "
|
||||||
|
"Drive. Une **instance** est une version autonome d'un service web. Dans le "
|
||||||
|
"cas de Nextcloud, même s'il existe un service officiel maintenu par les "
|
||||||
|
"développeurs, nous sommes totalement indépendants d'eux. La seule chose qui "
|
||||||
|
"nous lie à l'instance officielle est que nous utilisons la même technologie "
|
||||||
|
"sous-jacente, hébergée sur notre propre infrastructure."
|
||||||
|
|
||||||
|
#. type: Title #
|
||||||
|
#, no-wrap
|
||||||
|
msgid "Our Auxillary Services"
|
||||||
|
msgstr "Nos services auxiliaires"
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
msgid ""
|
||||||
|
"The following platforms are more there as a support role. They allow better "
|
||||||
|
"management of the other platforms, and they are here to give you an overview "
|
||||||
|
"of our infrastructure."
|
||||||
|
msgstr ""
|
||||||
|
"Les plateformes suivantes ont plutôt un rôle de soutien. Elles permettent "
|
||||||
|
"une meilleure gestion des autres plateformes et sont là pour vous donner une "
|
||||||
|
"vue d'ensemble de notre infrastructure."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"[[Auth|https://auth.ilot.io]], an instance of [[Authentik|https://"
|
||||||
|
"goauthentik.io]], is our unified authenticaton system. It is the service "
|
||||||
|
"that allows a membre to access all of our platforms using the same account. "
|
||||||
|
"From this space, you can also see all of the different spaces that you have "
|
||||||
|
"access to. It is also through Auth that you can change account settings, "
|
||||||
|
"like your password or email."
|
||||||
|
msgstr ""
|
||||||
|
"[[Auth|https://auth.ilot.io]], une instance de [[Authentik|https://"
|
||||||
|
"goauthentik.io]], est notre système d'authentification unifié. C'est le "
|
||||||
|
"service qui permet à un membre d'accéder à toutes nos plateformes en "
|
||||||
|
"utilisant le même compte. Depuis cet espace, vous pouvez également voir tous "
|
||||||
|
"les espaces auxquels vous avez accès. C'est également via Auth que vous "
|
||||||
|
"pouvez modifier les paramètres de votre compte, comme votre mot de passe ou "
|
||||||
|
"votre adresse électronique."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"[[Support|https://support.ilot.io/en/hc/706927618]], an instance of "
|
||||||
|
"[[Freescout|https://freescout.net/]], is our technical support platform "
|
||||||
|
"where you can find guides on how to use ilot and where you can open support "
|
||||||
|
"tickets. You can go [[here|https://support.ilot.io/en/hc/706927618/3/how-to-"
|
||||||
|
"request-help?category_id=3]] for more details on how to ask for help."
|
||||||
|
msgstr ""
|
||||||
|
"[[Support|https://support.ilot.io/en/hc/706927618]], une instance de "
|
||||||
|
"[[Freescout|https://freescout.net/]], est notre plateforme d'assistance "
|
||||||
|
"technique où vous pouvez trouver des guides sur l'utilisation d'ilot et où "
|
||||||
|
"vous pouvez ouvrir des billets d'assistance. Vous pouvez consulter [[here|"
|
||||||
|
"https://support.ilot.io/fr/hc/706927618/3/comment-faire-une-demande-de-"
|
||||||
|
"soutien-technique?category_id=3]] pour plus de détails sur la manière de "
|
||||||
|
"demander de l'aide."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"[[Status|https://status.ilot.io]], an instance of [[Uptime-Kuma|https://"
|
||||||
|
"github.com/louislam/uptime-kuma]], allows us to keep track of the state of "
|
||||||
|
"the network. If something goes down, Status will alert the technical working "
|
||||||
|
"group. If you have issues connecting to any of our platforms, you can go "
|
||||||
|
"there to see the state of the network."
|
||||||
|
msgstr ""
|
||||||
|
"[[Status|https://status.ilot.io]], une instance de [[Uptime-Kuma|https://"
|
||||||
|
"github.com/louislam/uptime-kuma]], nous permet de suivre l'état du réseau. "
|
||||||
|
"Si quelque chose tombe en panne, Status alertera le groupe de travail "
|
||||||
|
"technique. Si vous avez des difficultés à vous connecter à l'une de nos "
|
||||||
|
"plateformes, vous pouvez aller voir l'état du réseau."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"[[Notif|https://notif.ilot.io/]], an instance of [[listmonk|https://listmonk."
|
||||||
|
"app/]], allows the working groups to easily communicate with the rest of the "
|
||||||
|
"membership in case of announcements or technical issues."
|
||||||
|
msgstr ""
|
||||||
|
"[[Notif|https://notif.ilot.io/]], une instance de [[listmonk|https://"
|
||||||
|
"listmonk.app/]], permet aux groupes de travail de communiquer facilement "
|
||||||
|
"avec le reste des membres en cas d'annonces ou de problèmes techniques."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"[[Forge|https://forge.ilot.io]], an instance of [[Forgejo|https://forgejo."
|
||||||
|
"org/]], is a forge based on git that is the main developpment space for "
|
||||||
|
"ilot. It is used to [[track our bugs|https://forge.ilot.io/ilot/issues/"
|
||||||
|
"issues]], [[compile our platforms|https://forge.ilot.io/ilot/iports]] and "
|
||||||
|
"[[power our website|https://forge.ilot.io/ilot/ilot.io]]."
|
||||||
|
msgstr ""
|
||||||
|
"[[Forge|https://forge.ilot.io]], une instance de [[Forgejo|https://forgejo."
|
||||||
|
"org/]], est une forge basée sur git qui est le principal espace de "
|
||||||
|
"développement d'ilot. Elle est utilisée pour [[suivre nos bugs|https://forge."
|
||||||
|
"ilot.io/ilot/issues/issues]], [[compiler nos plateformes|https://forge.ilot."
|
||||||
|
"io/ilot/iports]] et [[alimenter notre site web|https://forge.ilot.io/ilot/"
|
||||||
|
"ilot.io]]."
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
msgid ""
|
||||||
|
"[[Wiki|https://wiki.ilot.io]], an instance of [[Wiki.JS|https://js.wiki/]], "
|
||||||
|
"is a wiki engine that acts as a knowledge base for the community and for the "
|
||||||
|
"membership. Since the membership is engaged with various causes, we can "
|
||||||
|
"expect this space to eventually become a resource for those whose values "
|
||||||
|
"matches ours."
|
||||||
|
msgstr ""
|
||||||
|
"[[Wiki|https://wiki.ilot.io]], une instance de [[Wiki.JS|https://js.wiki/]], "
|
||||||
|
"est un moteur wiki qui agit comme une base de connaissances pour la "
|
||||||
|
"communauté et pour les membres. Comme les membres sont engagés dans diverses "
|
||||||
|
"causes, nous pouvons nous attendre à ce que cet espace devienne une "
|
||||||
|
"ressource pour ceux dont les valeurs correspondent aux nôtres."
|
||||||
|
|
||||||
|
#, no-wrap
|
||||||
|
#~ msgid "[[The Wiki|https://wiki.ilot.io]]"
|
||||||
|
#~ msgstr "[[Le Wiki|https://wiki.ilot.io]]"
|
||||||
|
|
||||||
|
#, no-wrap
|
||||||
|
#~ msgid "[[The Lab|https://lab.ilot.io]]"
|
||||||
|
#~ msgstr "[[Le Lab|https://lab.ilot.io]]"
|
||||||
|
|
||||||
|
#~ msgid ""
|
||||||
|
#~ "The Lab is an instance of [[GitLab|https://en.wikipedia.org/wiki/"
|
||||||
|
#~ "GitLab]], a forge based on Git that enables easier collaboration between "
|
||||||
|
#~ "developpers. As of now, it is the main developpment space for ilot, thus "
|
||||||
|
#~ "it is more used by the technical working group. If you are a developper, "
|
||||||
|
#~ "or use Git in your workflow, this is a cooperative alternative to GitHub. "
|
||||||
|
#~ "If you are curious, all of our known issues our tracked [[here|https://"
|
||||||
|
#~ "lab.ilot.io/ilot/issues/-/issues]]. Our very own website uses GitLab "
|
||||||
|
#~ "Pages as its backend and its source-code can be found [[here|https://lab."
|
||||||
|
#~ "ilot.io/ilot/ilot.io]]."
|
||||||
|
#~ msgstr ""
|
||||||
|
#~ "Le Lab est une instance de [[GitLab|https://en.wikipedia.org/wiki/"
|
||||||
|
#~ "GitLab]], une forge basée sur Git qui facilite la collaboration entre les "
|
||||||
|
#~ "développeurs. Pour l'instant, c'est le principal espace de développement "
|
||||||
|
#~ "d'ilot, et il est donc plus utilisé par le groupe de travail technique. "
|
||||||
|
#~ "Si vous êtes un développeur, ou si vous utilisez Git dans votre travail, "
|
||||||
|
#~ "c'est une alternative coopérative à GitHub. Si vous êtes curieux-ses, "
|
||||||
|
#~ "tous nos bogues informatiques connus sont suivis [[ici|https://lab.ilot."
|
||||||
|
#~ "io/ilot/issues/-/issues]]. Notre propre site web utilise GitLab Pages "
|
||||||
|
#~ "comme technology d'hébergement et son code source peut être trouvé [[ici|"
|
||||||
|
#~ "https://lab.ilot.io/ilot/ilot.io]]."
|
16
platforms.mdwn
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
[[!meta title="Platforms"]]
|
||||||
|
|
||||||
|
# [[The Cloud|https://ilot.io/apps/files]]
|
||||||
|
|
||||||
|
The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a productivity collaboration platform analogous to Google Drive. An **instance** is an autonomous version of a web service. In Nextcloud's case, even though there exists an official service maintained by the developpers, we are totally independant from them. The only thing that ties us to the official instance is that we use the same underlying technology, hosted on our own infrastructure.
|
||||||
|
|
||||||
|
# Our Auxillary Services
|
||||||
|
|
||||||
|
The following platforms are more there as a support role. They allow better management of the other platforms, and they are here to give you an overview of our infrastructure.
|
||||||
|
|
||||||
|
* [[Auth|https://auth.ilot.io]], an instance of [[Authentik|https://goauthentik.io]], is our unified authenticaton system. It is the service that allows a membre to access all of our platforms using the same account. From this space, you can also see all of the different spaces that you have access to. It is also through Auth that you can change account settings, like your password or email.
|
||||||
|
* [[Support|https://support.ilot.io/en/hc/706927618]], an instance of [[Freescout|https://freescout.net/]], is our technical support platform where you can find guides on how to use ilot and where you can open support tickets. You can go [[here|https://support.ilot.io/en/hc/706927618/3/how-to-request-help?category_id=3]] for more details on how to ask for help.
|
||||||
|
* [[Status|https://status.ilot.io]], an instance of [[Uptime-Kuma|https://github.com/louislam/uptime-kuma]], allows us to keep track of the state of the network. If something goes down, Status will alert the technical working group. If you have issues connecting to any of our platforms, you can go there to see the state of the network.
|
||||||
|
* [[Notif|https://notif.ilot.io/]], an instance of [[listmonk|https://listmonk.app/]], allows the working groups to easily communicate with the rest of the membership in case of announcements or technical issues.
|
||||||
|
* [[Forge|https://forge.ilot.io]], an instance of [[Forgejo|https://forgejo.org/]], is a forge based on git that is the main developpment space for ilot. It is used to [[track our bugs|https://forge.ilot.io/ilot/issues/issues]], [[compile our platforms|https://forge.ilot.io/ilot/iports]] and [[power our website|https://forge.ilot.io/ilot/ilot.io]].
|
||||||
|
* [[Wiki|https://wiki.ilot.io]], an instance of [[Wiki.JS|https://js.wiki/]], is a wiki engine that acts as a knowledge base for the community and for the membership. Since the membership is engaged with various causes, we can expect this space to eventually become a resource for those whose values matches ours.
|
114
platforms.pot
Normal file
|
@ -0,0 +1,114 @@
|
||||||
|
# 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-11 14:44-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=\"Platforms\"]]\n"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Title #
|
||||||
|
#, markdown-text, no-wrap
|
||||||
|
msgid "[[The Cloud|https://ilot.io/apps/files]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"The Cloud is an instance of [[Nextcloud|https://nextcloud.com/]], a "
|
||||||
|
"productivity collaboration platform analogous to Google Drive. An "
|
||||||
|
"**instance** is an autonomous version of a web service. In Nextcloud's case, "
|
||||||
|
"even though there exists an official service maintained by the developpers, "
|
||||||
|
"we are totally independant from them. The only thing that ties us to the "
|
||||||
|
"official instance is that we use the same underlying technology, hosted on "
|
||||||
|
"our own infrastructure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Title #
|
||||||
|
#, markdown-text, no-wrap
|
||||||
|
msgid "Our Auxillary Services"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Plain text
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"The following platforms are more there as a support role. They allow better "
|
||||||
|
"management of the other platforms, and they are here to give you an overview "
|
||||||
|
"of our infrastructure."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[Auth|https://auth.ilot.io]], an instance of "
|
||||||
|
"[[Authentik|https://goauthentik.io]], is our unified authenticaton "
|
||||||
|
"system. It is the service that allows a membre to access all of our "
|
||||||
|
"platforms using the same account. From this space, you can also see all of "
|
||||||
|
"the different spaces that you have access to. It is also through Auth that "
|
||||||
|
"you can change account settings, like your password or email."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[Support|https://support.ilot.io/en/hc/706927618]], an instance of "
|
||||||
|
"[[Freescout|https://freescout.net/]], is our technical support platform "
|
||||||
|
"where you can find guides on how to use ilot and where you can open support "
|
||||||
|
"tickets. You can go "
|
||||||
|
"[[here|https://support.ilot.io/en/hc/706927618/3/how-to-request-help?category_id=3]] "
|
||||||
|
"for more details on how to ask for help."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[Status|https://status.ilot.io]], an instance of "
|
||||||
|
"[[Uptime-Kuma|https://github.com/louislam/uptime-kuma]], allows us to keep "
|
||||||
|
"track of the state of the network. If something goes down, Status will alert "
|
||||||
|
"the technical working group. If you have issues connecting to any of our "
|
||||||
|
"platforms, you can go there to see the state of the network."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[Notif|https://notif.ilot.io/]], an instance of "
|
||||||
|
"[[listmonk|https://listmonk.app/]], allows the working groups to easily "
|
||||||
|
"communicate with the rest of the membership in case of announcements or "
|
||||||
|
"technical issues."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[Forge|https://forge.ilot.io]], an instance of "
|
||||||
|
"[[Forgejo|https://forgejo.org/]], is a forge based on git that is the main "
|
||||||
|
"developpment space for ilot. It is used to [[track our "
|
||||||
|
"bugs|https://forge.ilot.io/ilot/issues/issues]], [[compile our "
|
||||||
|
"platforms|https://forge.ilot.io/ilot/iports]] and [[power our "
|
||||||
|
"website|https://forge.ilot.io/ilot/ilot.io]]."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Bullet: '* '
|
||||||
|
#, markdown-text
|
||||||
|
msgid ""
|
||||||
|
"[[Wiki|https://wiki.ilot.io]], an instance of [[Wiki.JS|https://js.wiki/]], "
|
||||||
|
"is a wiki engine that acts as a knowledge base for the community and for the "
|
||||||
|
"membership. Since the membership is engaged with various causes, we can "
|
||||||
|
"expect this space to eventually become a resource for those whose values "
|
||||||
|
"matches ours."
|
||||||
|
msgstr ""
|
|
@ -1,188 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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>Platforms - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><span class="selflink">Platforms</span></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<h1><a href="https://cloud.ilot.io">The Cloud</a></h1>
|
|
||||||
|
|
||||||
<p>The Cloud is an instance of <a href="https://nextcloud.com/">Nextcloud</a>, a productivity collaboration platform analogous to Google Drive. An <strong>instance</strong> is an autonomous version of a web service. In Nextcloud's case, even though there exists an official service maintained by the developpers, we are totally independant from them. The only thing that ties us to the official instance is that we use the same underlying technology, hosted on our own infrastructure.</p>
|
|
||||||
|
|
||||||
<h1><a href="https://wiki.ilot.io">The Wiki</a></h1>
|
|
||||||
|
|
||||||
<p>The Wiki is an instance of <a href="https://js.wiki/">Wiki.JS</a>, a wiki engine that acts as a knowledge base for the community and for the membership. Since the membership is engaged with various causes, we can expect this space to eventually become a resource for those whose values matches ours.</p>
|
|
||||||
|
|
||||||
<h1><a href="https://lab.ilot.io">The Lab</a></h1>
|
|
||||||
|
|
||||||
<p>The Lab is an instance of <a href="https://en.wikipedia.org/wiki/GitLab">GitLab</a>, a forge based on Git that enables easier collaboration between developpers. As of now, it is the main developpment space for ilot, thus it is more used by the technical working group. If you are a developper, or use Git in your workflow, this is a cooperative alternative to GitHub. If you are curious, all of our known issues our tracked <a href="https://lab.ilot.io/ilot/issues/-/issues">here</a>. Our very own website uses GitLab Pages as its backend and its source-code can be found <a href="https://lab.ilot.io/ilot/ilot.io">here</a>.</p>
|
|
||||||
|
|
||||||
<h1>Our Auxillary Services</h1>
|
|
||||||
|
|
||||||
<p>The following platforms are more there as a support role. They allow better management of the other platforms, and they are here to give you an overview of our infrastructure.</p>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://auth.ilot.io">Auth</a>, an instance of <a href="https://goauthentik.io">Authentik</a>, is our unified authenticaton system. It is the service that allows a membre to access all of our platforms using the same account. From this space, you can also see all of the different spaces that you have access to. It is also through Auth that you can change account settings, like your password or email.</li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a>, an instance of <a href="https://freescout.net/">Freescout</a>, is our technical support platform where you can find guides on how to use ilot and where you can open support tickets. You can go <a href="https://support.ilot.io/en/hc/706927618/3/how-to-request-help?category_id=3">here</a> for more details on how to ask for help.</li>
|
|
||||||
<li><a href="https://status.ilot.io">Status</a>, an instance of <a href="https://github.com/louislam/uptime-kuma">Uptime-Kuma</a>, allows us to keep track of the state of the network. If something goes down, Status will alert the technical working group. If you have issues connecting to any of our platforms, you can go there to see the state of the network.</li>
|
|
||||||
<li><a href="https://notif.ilot.io/">Notif</a>, an instance of <a href="https://listmonk.app/">listmonk</a>, allows the working groups to easily communicate with the rest of the membership in case of announcements or technical issues</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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=platforms&t=Platforms" alt="tracking pixel to count visitors when Javascript is disabled" />
|
|
||||||
</noscript>
|
|
||||||
-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -1,227 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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>Platformes - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><span class="selflink">Plateformes</span></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="../join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<h1><a href="https://cloud.ilot.io">Le Cloud</a></h1>
|
|
||||||
|
|
||||||
<p>Le Cloud est une instance de <a href="https://nextcloud.com/">Nextcloud</a>, une
|
|
||||||
plateforme de collaboration en matière de productivité analogue à Google
|
|
||||||
Drive. Une <strong>instance</strong> est une version autonome d'un service web. Dans le
|
|
||||||
cas de Nextcloud, même s'il existe un service officiel maintenu par les
|
|
||||||
développeurs, nous sommes totalement indépendants d'eux. La seule chose qui
|
|
||||||
nous lie à l'instance officielle est que nous utilisons la même technologie
|
|
||||||
sous-jacente, hébergée sur notre propre infrastructure.</p>
|
|
||||||
|
|
||||||
<h1><a href="https://wiki.ilot.io">Le Wiki</a></h1>
|
|
||||||
|
|
||||||
<p>Le Wiki est une instance de <a href="https://js.wiki/">Wiki.JS</a>, un moteur wiki qui
|
|
||||||
agit comme une base de connaissances pour la communauté et pour les
|
|
||||||
membres. Comme les membres sont engagés dans diverses causes, nous pouvons
|
|
||||||
nous attendre à ce que cet espace devienne une ressource pour ceux dont les
|
|
||||||
valeurs correspondent aux nôtres.</p>
|
|
||||||
|
|
||||||
<h1><a href="https://lab.ilot.io">Le Lab</a></h1>
|
|
||||||
|
|
||||||
<p>Le Lab est une instance de <a href="https://en.wikipedia.org/wiki/GitLab">GitLab</a>,
|
|
||||||
une forge basée sur Git qui facilite la collaboration entre les
|
|
||||||
développeurs. Pour l'instant, c'est le principal espace de développement
|
|
||||||
d'ilot, et il est donc plus utilisé par le groupe de travail technique. Si
|
|
||||||
vous êtes un développeur, ou si vous utilisez Git dans votre travail, c'est
|
|
||||||
une alternative coopérative à GitHub. Si vous êtes curieux-ses, tous nos
|
|
||||||
bogues informatiques connus sont suivis
|
|
||||||
<a href="https://lab.ilot.io/ilot/issues/-/issues">ici</a>. Notre propre site web
|
|
||||||
utilise GitLab Pages comme technology d'hébergement et son code source peut
|
|
||||||
être trouvé <a href="https://lab.ilot.io/ilot/ilot.io">ici</a>.</p>
|
|
||||||
|
|
||||||
<h1>Nos services auxiliaires</h1>
|
|
||||||
|
|
||||||
<p>Les plates-formes suivantes ont plutôt un rôle de soutien. Elles permettent
|
|
||||||
une meilleure gestion des autres plateformes et sont là pour vous donner une
|
|
||||||
vue d'ensemble de notre infrastructure.</p>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://auth.ilot.io">Auth</a>, une instance de
|
|
||||||
<a href="https://goauthentik.io">Authentik</a>, est notre système
|
|
||||||
d'authentification unifié. C'est le service qui permet à un membre
|
|
||||||
d'accéder à toutes nos plateformes en utilisant le même compte. Depuis
|
|
||||||
cet espace, vous pouvez également voir tous les espaces auxquels vous
|
|
||||||
avez accès. C'est également via Auth que vous pouvez modifier les
|
|
||||||
paramètres de votre compte, comme votre mot de passe ou votre adresse
|
|
||||||
électronique.</li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a>, une instance de
|
|
||||||
<a href="https://freescout.net/">Freescout</a>, est notre plateforme d'assistance
|
|
||||||
technique où vous pouvez trouver des guides sur l'utilisation d'ilot et
|
|
||||||
où vous pouvez ouvrir des billets d'assistance. Vous pouvez consulter
|
|
||||||
<a href="https://support.ilot.io/fr/hc/706927618/3/comment-faire-une-demande-de-soutien-technique?category_id=3">here</a>
|
|
||||||
pour plus de détails sur la manière de demander de l'aide.</li>
|
|
||||||
<li><a href="https://status.ilot.io">Status</a>, une instance de
|
|
||||||
<a href="https://github.com/louislam/uptime-kuma">Uptime-Kuma</a>, nous permet de
|
|
||||||
suivre l'état du réseau. Si quelque chose tombe en panne, Status
|
|
||||||
alertera le groupe de travail technique. Si vous avez des difficultés à
|
|
||||||
vous connecter à l'une de nos plateformes, vous pouvez aller voir l'état
|
|
||||||
du réseau.</li>
|
|
||||||
<li><a href="https://notif.ilot.io/">Notif</a>, une instance de
|
|
||||||
<a href="https://listmonk.app/">listmonk</a>, permet aux groupes de travail de
|
|
||||||
communiquer facilement avec le reste des membres en cas d'annonces ou de
|
|
||||||
problèmes techniques</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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=platforms.fr&t=Platformes" alt="tracking pixel to count visitors when Javascript is disabled" />
|
|
||||||
</noscript>
|
|
||||||
-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
214
plugins/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
|
|
@ -1,173 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p>Recent changes to this wiki:</p>
|
|
||||||
|
|
||||||
<div class="feedlink">
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,171 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><a href="../platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="../join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p>Dernières modifications :</p>
|
|
||||||
|
|
||||||
<div class="feedlink">
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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,238 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 "<span class="createlink">WikiLink</span>"
|
|
||||||
msgstr "<span class="createlink">WikiLink</span>"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,259 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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>
|
|
||||||
<span class="createlink">directive</span>. 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
|
|
||||||
<span class="createlink">directive</span>. 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,257 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><a href="../platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="../join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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> <span class="createlink">directive</span>. 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 <span class="createlink">directive</span>. É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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
BIN
sidebar.fr.mo
40
sidebar.fr.po
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
# 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: ilot.io\n"
|
||||||
|
"POT-Creation-Date: 2024-10-08 14:50-0400\n"
|
||||||
|
"PO-Revision-Date: 2024-10-08 15:08-0400\n"
|
||||||
|
"Last-Translator: \n"
|
||||||
|
"Language-Team: 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: <ul><li>
|
||||||
|
msgid "[[Home|index]]"
|
||||||
|
msgstr "[[Accueil|index]]"
|
||||||
|
|
||||||
|
#. type: Content of: <ul><li>
|
||||||
|
msgid "[[Platforms]]"
|
||||||
|
msgstr "[[Plateformes|platforms]]"
|
||||||
|
|
||||||
|
#. type: Content of: <ul><li>
|
||||||
|
msgid "[[Join]]"
|
||||||
|
msgstr "[[Se joindre|join]]"
|
||||||
|
|
||||||
|
#. type: Content of: <ul><li>
|
||||||
|
msgid "[[Your Files|https://ilot.io/apps/files]]"
|
||||||
|
msgstr "[[Vos fichiers|https://ilot.io/apps/files]]"
|
||||||
|
|
||||||
|
#~ msgid "<button class=\"btn sign-in\" onclick=\"window.location.href='https://ilot.io/apps/files';\"> Your Files </button>"
|
||||||
|
#~ msgstr "<button class=\"btn sign-in\" onclick=\"window.location.href='https://ilot.io/apps/files';\"> Vos fichiers </button>"
|
||||||
|
|
||||||
|
#~ msgid "[[Support|https://support.ilot.io/en/hc/706927618]]"
|
||||||
|
#~ msgstr "[[Aide|https://support.ilot.io/fr/hc/706927618]]"
|
7
sidebar.html
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
<!-- 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>[[Platforms]]</li>
|
||||||
|
<li>[[Join]]</li>
|
||||||
|
<li class="btn p-0 border sign-in">[[Your Files|https://ilot.io/apps/files]]</li>
|
||||||
|
</ul>
|
33
sidebar.pot
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# 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-10-08 15:06-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 "[[Platforms]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <ul><li>
|
||||||
|
msgid "[[Join]]"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. type: Content of: <ul><li>
|
||||||
|
msgid "[[Your Files|https://ilot.io/apps/files]]"
|
||||||
|
msgstr ""
|
|
@ -1,179 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
English
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.fr.html">Français</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,178 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
<div class="dropdown navbar-left">
|
|
||||||
<button class="btn language-switcher dropdown-toggle" type="button" id="language-menu-top" data-toggle=
|
|
||||||
"dropdown" aria-haspopup="true" aria-expanded="true">
|
|
||||||
Français
|
|
||||||
<img src="../wikiicons/languages.png">
|
|
||||||
</button>
|
|
||||||
<ul class="dropdown-menu" aria-labelledby="language-menu-top">
|
|
||||||
|
|
||||||
<li>
|
|
||||||
<a href="./index.en.html">English</a>
|
|
||||||
</li>
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><a href="../platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="../join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.fr.html">Accueil</a></li>
|
|
||||||
<li><a href="../platforms/index.fr.html">Plateformes</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/fr/hc/706927618">Aide</a></li>
|
|
||||||
<li><a href="../join/index.fr.html">Se joindre</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in"
|
|
||||||
onclick="window.location.href='https://ilot.io/apps/files';"> Vos fichiers
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright"> Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span> <span class="pull-right powered-by"> Propulsé par
|
|
||||||
<a href="http://ikiwiki.info/">ikiwiki</a>. </span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
|
@ -1,359 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<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 <span class="createlink">WikiLink</span> 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> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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>
|
|
Before Width: | Height: | Size: 220 B |
Before Width: | Height: | Size: 295 B |
Before Width: | Height: | Size: 164 B |
Before Width: | Height: | Size: 173 B |
Before Width: | Height: | Size: 133 B |
Before Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 168 B |
Before Width: | Height: | Size: 397 B |
Before Width: | Height: | Size: 171 B |
BIN
smileys/idea.png
Before Width: | Height: | Size: 372 B |
|
@ -1,208 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
||||||
<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 - ilot.io</title>
|
|
||||||
|
|
||||||
<!-- cargo-culted from https://realfavicongenerator.net/ -->
|
|
||||||
<!-- for the record: it is absolutely ridiculous that new browsers
|
|
||||||
*and* operating systems each want their own little precious
|
|
||||||
snowflake just for a frigging icon -->
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="../apple-touch-icon.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="../favicon-32x32.png">
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="../favicon-16x16.png">
|
|
||||||
<link rel="manifest" href="../site.webmanifest">
|
|
||||||
<meta name="msapplication-TileColor" content="#da532c">
|
|
||||||
<meta name="theme-color" content="#ffffff">
|
|
||||||
|
|
||||||
<!-- ikiwiki CSS -->
|
|
||||||
<link href="../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://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous" />
|
|
||||||
|
|
||||||
<!-- Custom styles for this template -->
|
|
||||||
<link href="../bootstrap.local.css" rel="stylesheet" />
|
|
||||||
|
|
||||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
|
||||||
<!--[if lt IE 9]>
|
|
||||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
|
|
||||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
|
||||||
<![endif]-->
|
|
||||||
|
|
||||||
<!-- Custom styles for derivatives -->
|
|
||||||
|
|
||||||
<link rel="stylesheet" href="../local.css" type="text/css" />
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<nav class="navbar navbar-default navbar-fixed-top">
|
|
||||||
<div class="container">
|
|
||||||
<div class="navbar-header">
|
|
||||||
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
|
|
||||||
<span class="sr-only">Toggle navigation</span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
<span class="icon-bar"></span>
|
|
||||||
</button>
|
|
||||||
<a class="navbar-brand" href="../">
|
|
||||||
<img alt="ilot.io" src="../favicon.png" width="48" height="48" />
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbar" class="collapse navbar-collapse">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- the anchors force ikiwiki to use a tags instead of spans. hopefully. -->
|
|
||||||
<ul class="nav navbar-nav navbar-right">
|
|
||||||
<li><a href="../index.en.html">Home</a></li>
|
|
||||||
<li><a href="../platforms/index.en.html">Platforms</a></li>
|
|
||||||
<li><a href="https://notif.ilot.io/archive">Archives</a></li>
|
|
||||||
<li><a href="https://support.ilot.io/en/hc/706927618">Support</a></li>
|
|
||||||
<li><a href="../join/index.en.html">Join</a></li>
|
|
||||||
<li>
|
|
||||||
<button class="btn sign-in" onclick="window.location.href='https://ilot.io/apps/files';">
|
|
||||||
Your Files
|
|
||||||
</button>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
|
|
||||||
<ul class="nav navbar-nav">
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<div class="container" id="content">
|
|
||||||
|
|
||||||
<p>This page is used to control what smileys are supported by the wiki.
|
|
||||||
Just write the text of a smiley to display it.</p>
|
|
||||||
|
|
||||||
<ul>
|
|
||||||
<li>:) <img src="./smile.png" alt="smile.png" /></li>
|
|
||||||
<li>:-) <img src="./smile.png" alt="smile.png" /></li>
|
|
||||||
<li>:D <img src="./biggrin.png" alt="biggrin.png" /></li>
|
|
||||||
<li>:-D <img src="./biggrin.png" alt="biggrin.png" /></li>
|
|
||||||
<li>B) <img src="./smile2.png" alt="smile2.png" /></li>
|
|
||||||
<li>B-) <img src="./smile2.png" alt="smile2.png" /></li>
|
|
||||||
<li>:)) <img src="./smile3.png" alt="smile3.png" /></li>
|
|
||||||
<li>:-)) <img src="./smile3.png" alt="smile3.png" /></li>
|
|
||||||
<li>;) <img src="./smile4.png" alt="smile4.png" /></li>
|
|
||||||
<li>;-) <img src="./smile4.png" alt="smile4.png" /></li>
|
|
||||||
<li>:\ <img src="./ohwell.png" alt="ohwell.png" /></li>
|
|
||||||
<li>:-\ <img src="./ohwell.png" alt="ohwell.png" /></li>
|
|
||||||
<li>:/ <img src="./ohwell.png" alt="ohwell.png" /></li>
|
|
||||||
<li>:-/ <img src="./ohwell.png" alt="ohwell.png" /></li>
|
|
||||||
<li>:| <img src="./neutral.png" alt="neutral.png" /></li>
|
|
||||||
<li>:-| <img src="./neutral.png" alt="neutral.png" /></li>
|
|
||||||
<li>>:> <img src="./devil.png" alt="devil.png" /></li>
|
|
||||||
<li>X-( <img src="./angry.png" alt="angry.png" /></li>
|
|
||||||
<li><:( <img src="./frown.png" alt="frown.png" /></li>
|
|
||||||
<li>:( <img src="./sad.png" alt="sad.png" /></li>
|
|
||||||
<li>:-( <img src="./sad.png" alt="sad.png" /></li>
|
|
||||||
<li>:-? <img src="./tongue.png" alt="tongue.png" /></li>
|
|
||||||
<li>:-P <img src="./tongue.png" alt="tongue.png" /></li>
|
|
||||||
<li>:o <img src="./redface.png" alt="redface.png" /></li>
|
|
||||||
<li>|) <img src="./tired.png" alt="tired.png" /></li>
|
|
||||||
<li>|-) <img src="./tired.png" alt="tired.png" /></li>
|
|
||||||
<li>{OK} <img src="./thumbs-up.png" alt="thumbs-up.png" /></li>
|
|
||||||
<li>{X} <img src="./icon-error.png" alt="icon-error.png" /></li>
|
|
||||||
<li>{i} <img src="./icon-info.png" alt="icon-info.png" /></li>
|
|
||||||
<li>(./) <img src="./checkmark.png" alt="checkmark.png" /></li>
|
|
||||||
<li>(!) <img src="./idea.png" alt="idea.png" /></li>
|
|
||||||
<li>[!] <img src="./attention.png" alt="attention.png" /></li>
|
|
||||||
<li>/!\ <img src="./alert.png" alt="alert.png" /></li>
|
|
||||||
<li>(?) <img src="./question.png" alt="question.png" /></li>
|
|
||||||
<li>{x} <img src="./star_on.png" alt="star on.png" /></li>
|
|
||||||
<li>{*} <img src="./star_on.png" alt="star on.png" /></li>
|
|
||||||
<li>{o} <img src="./star_off.png" alt="star off.png" /></li>
|
|
||||||
<li>{1} <img src="./prio1.png" alt="prio1.png" /></li>
|
|
||||||
<li>{2} <img src="./prio2.png" alt="prio2.png" /></li>
|
|
||||||
<li>{3} <img src="./prio3.png" alt="prio3.png" /></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p>For example: <img src="./star_on.png" alt="{x}" /> <img src="./smile2.png" alt="B)" /> <img src="./star_on.png" alt="{x}" /></p>
|
|
||||||
|
|
||||||
<hr />
|
|
||||||
|
|
||||||
<p>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 <span class="createlink">WikiLink</span> to the image to display.</p>
|
|
||||||
|
|
||||||
<p><img src="./alert.png" alt="/!\" /> 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.</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- legacy Ikiwiki comments.pm section -->
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Mastodon comments -->
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div> <!-- /container -->
|
|
||||||
|
|
||||||
<footer class="footer" role="contentinfo">
|
|
||||||
<div class="container">
|
|
||||||
|
|
||||||
|
|
||||||
<p class="text-muted">
|
|
||||||
<span class="copyright">
|
|
||||||
Copyleft © 2024-2024 ilot <a href="../meta/license/">CC-BY-SA</a>
|
|
||||||
</span>
|
|
||||||
<span class="pull-right powered-by">
|
|
||||||
Powered by <a href="http://ikiwiki.info/">ikiwiki</a>.
|
|
||||||
</span>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Bootstrap core JavaScript
|
|
||||||
================================================== -->
|
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
|
||||||
<script src="https://code.jquery.com/jquery-3.2.1.min.js" crossorigin="anonymous" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f"></script>
|
|
||||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" crossorigin="anonymous" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"></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&t=smileys" alt="tracking pixel to count visitors when Javascript is disabled" />
|
|
||||||
</noscript>
|
|
||||||
-->
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Before Width: | Height: | Size: 239 B |
Before Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 158 B |
Before Width: | Height: | Size: 153 B |
Before Width: | Height: | Size: 302 B |
Before Width: | Height: | Size: 306 B |