blob: ca3e7f29bab818d6d7ececd169bbb040a20952bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[[Category:ParabolaWiki]]
[[Category:Documentation]]
Paraboladocs, a distributed free documentation repository using Mediawiki markup. Documents are stored in a git repository. Currenty experimental.
== Get the repository ==
=== Git protocol, read-only ===
git clone git://alfplayer.me/paraboladocs.git
=== SSH access, read-write (permission required) ===
Parabola Hackers have access. Others can ask ''alfplayer <alfplayer@mailoo.org>'' to get access without restrictions.
git clone git@alfplayer.me:freedocs.git
=== HTTP access, read-only ===
http://alfplayer.me/project/freedocs
== Fetch documents from ArchWiki and ParabolaWiki ==
Example: Installation guide
title="Installation_guide"
=== From ArchWiki ===
curl "https://wiki.archlinux.org/index.php?title=$title&action=raw" > "$title"
=== From ParabolaWiki ===
curl "https://wiki.parabola.nu/index.php?title=Installation_Guide&action=raw" > "$title"
|