Explorar el Código

Merge branch 'stretch' of https://github.com/bashrc/freedombone

Bob Mottram hace 7 años
padre
commit
530bece40a
Se han modificado 5 ficheros con 545 adiciones y 121 borrados
  1. 48
    0
      doc/EN/app_fedwiki.org
  2. 4
    0
      doc/EN/apps.org
  3. 31
    3
      src/freedombone-app-fedwiki
  4. 332
    0
      website/EN/app_fedwiki.html
  5. 130
    118
      website/EN/apps.html

+ 48
- 0
doc/EN/app_fedwiki.org Ver fichero

1
+#+TITLE:
2
+#+AUTHOR: Bob Mottram
3
+#+EMAIL: bob@freedombone.net
4
+#+KEYWORDS: freedombone, fedwiki
5
+#+DESCRIPTION: How to use Federated Wiki
6
+#+OPTIONS: ^:nil toc:nil
7
+#+HTML_HEAD: <link rel="stylesheet" type="text/css" href="freedombone.css" />
8
+
9
+#+BEGIN_CENTER
10
+[[file:images/logo.png]]
11
+#+END_CENTER
12
+
13
+#+BEGIN_EXPORT html
14
+<center>
15
+<h1>Federated Wiki</h1>
16
+</center>
17
+#+END_EXPORT
18
+
19
+Federated wikis are a relatively new concept. There can be multiple copies of the same page on different servers and it's then easy to pick which version you prefer, or make something new. It's like wiki meets mashup meets federation, and so is different from many previous web paradigms and may take some recalibration of how you think the web should work.
20
+
21
+* Installation
22
+Log into your system with:
23
+
24
+#+begin_src bash
25
+ssh myusername@mydomain -p 2222
26
+#+end_src
27
+
28
+Using cursor keys, space bar and Enter key select *Administrator controls* and type in your password.
29
+
30
+Select *Add/Remove Apps* then *fedwiki*. You will then be asked for a domain name and if you are using FreeDNS also the code for the domain which can be found under *Dynamic DNS* on the FreeDNS site (the random string from "/quick cron example/" which appears after /update.php?/ and before />>/). For more details on obtaining a domain and making it accessible via dynamic DNS see the [[./faq.html][FAQ]]. Typically the domain name you use will be a subdomain, such as /wiki.mydomainname.net/. It will need to be a domain which you have bought somewhere and own and not one of the FreeDNS subdomains, otherwise you won't be able to get a SSL/TLS certificate for it.
31
+
32
+
33
+* Usage
34
+First you'll need to get the login password, which can be found on the *Administrator control panel* under *Passwords* then *fedwiki*.
35
+
36
+Navigate to your wiki site then click on the *lock icon* at the bottom of the screen and enter the password. It should then appear unlocked. If you don't unlock then any edits you make won't be saved.
37
+
38
+There are a few things to know about using the federated wiki.
39
+
40
+ * You can edit by clicking on the *wiki* button at the bottom of the screen
41
+ * To edit a paragraph double click on it
42
+ * To remove a paragraph just delete all of its text
43
+ * Paragraphs can be dragged up and down to change their order, or moved between pages
44
+ * To add a new paragraph use the *+* button
45
+ * You can use left and right cursor keys to move through pages
46
+ * To claim/fork a page from another server click on the flag icon
47
+ * When done editing click on the *wiki* button again
48
+ * Different versions of the same page on different servers are represented by boxes at the bottom right of the screen. You can double click on them to see the different versions, and use the flag icon to fork if you prefer that version

+ 4
- 0
doc/EN/apps.org Ver fichero

49
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
49
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
50
 
50
 
51
 [[./app_etherpad.html][How to use it]]
51
 [[./app_etherpad.html][How to use it]]
52
+* Federated wiki
53
+A new approach to creating wiki content.
54
+
55
+[[./app_fedwiki.html][How to use it]]
52
 * Friendica
56
 * Friendica
53
 Federated social network system.
57
 Federated social network system.
54
 
58
 

+ 31
- 3
src/freedombone-app-fedwiki Ver fichero

54
                    MY_EMAIL_ADDRESS)
54
                    MY_EMAIL_ADDRESS)
55
 
55
 
56
 function fedwiki_remove_bad_links {
56
 function fedwiki_remove_bad_links {
57
-    if [ -f /usr/local/lib/node_modules/wiki/node_modules/wiki-security-friends/client/security.js ]; then
58
-        sed -i 's|maxcdn.bootstrapcdn.com|localhost|g' /usr/local/lib/node_modules/wiki/node_modules/wiki-security-friends/client/security.js
57
+    if [[ $ONION_ONLY == 'no' ]]; then
58
+        sed -i "s|link[href='https://maxcdn.bootstrapcdn.com.*|link[href='https://${FEDWIKI_DOMAIN_NAME}/fonts-font-awesome/css/font-awesome.min.css']\").length) {|g" /usr/local/lib/node_modules/wiki/node_modules/wiki-security-friends/client/security.js
59
+
60
+        sed -i "s|\$('<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com.*|\$('<link rel=\"stylesheet\" href=\"https://${FEDWIKI_DOMAIN_NAME}/fonts-font-awesome/css/font-awesome.min.css\">').appendTo(\"head\");|g" /usr/local/lib/node_modules/wiki/node_modules/wiki-security-friends/client/security.js
61
+    else
62
+        FEDWIKI_ONION_HOSTNAME=$(cat /var/lib/tor/hidden_service_fedwiki/hostname)
63
+        sed -i "s|link[href='https://maxcdn.bootstrapcdn.com.*|link[href='http://${FEDWIKI_ONION_HOSTNAME}/fonts-font-awesome/css/font-awesome.min.css']\").length) {|g" /usr/local/lib/node_modules/wiki/node_modules/wiki-security-friends/client/security.js
64
+
65
+        sed -i "s|\$('<link rel=\"stylesheet\" href=\"https://maxcdn.bootstrapcdn.com.*|\$('<link rel=\"stylesheet\" href=\"http://${FEDWIKI_ONION_HOSTNAME}/fonts-font-awesome/css/font-awesome.min.css\">').appendTo(\"head\");|g" /usr/local/lib/node_modules/wiki/node_modules/wiki-security-friends/client/security.js
59
     fi
66
     fi
60
 
67
 
61
     if [ -f /usr/local/lib/node_modules/wiki/node_modules/localforage/docs/theme/style.css ]; then
68
     if [ -f /usr/local/lib/node_modules/wiki/node_modules/localforage/docs/theme/style.css ]; then
143
     fi
150
     fi
144
     ${PROJECT_NAME}-pass -u $FEDWIKI_USERNAME -a fedwiki -p "$FEDWIKI_PASSWORD"
151
     ${PROJECT_NAME}-pass -u $FEDWIKI_USERNAME -a fedwiki -p "$FEDWIKI_PASSWORD"
145
     sed -i "s|--cookieSecret .*|--cookieSecret '${FEDWIKI_PASSWORD}'|g" /etc/systemd/system/fedwiki.service
152
     sed -i "s|--cookieSecret .*|--cookieSecret '${FEDWIKI_PASSWORD}'|g" /etc/systemd/system/fedwiki.service
153
+    sed -i "s|\"secret\":.*|\"secret\": \"${FEDWIKI_PASSWORD}\"|g" ${FEDWIKI_DATA}/status/owner.json
146
     systemctl daemon-reload
154
     systemctl daemon-reload
147
     systemctl restart fedwiki
155
     systemctl restart fedwiki
148
     write_config_param "FEDWIKI_COOKIE" "$FEDWIKI_PASSWORD"
156
     write_config_param "FEDWIKI_COOKIE" "$FEDWIKI_PASSWORD"
207
             rm -rf $temp_restore_dir
215
             rm -rf $temp_restore_dir
208
         fi
216
         fi
209
 
217
 
218
+        FEDWIKI_PASSWORD=$(cat ${FEDWIKI_DATA}/status/owner.json | grep secret | awk -F '"' '{print $4}')
219
+        ${PROJECT_NAME}-pass -u $FEDWIKI_USERNAME -a fedwiki -p "$FEDWIKI_PASSWORD"
220
+        sed -i "s|--cookieSecret .*|--cookieSecret '${FEDWIKI_PASSWORD}'|g" /etc/systemd/system/fedwiki.service
221
+        write_config_param "FEDWIKI_COOKIE" "$FEDWIKI_PASSWORD"
222
+        systemctl daemon-reload
210
         systemctl start fedwiki
223
         systemctl start fedwiki
211
         restart_site
224
         restart_site
212
     fi
225
     fi
255
         rm -rf $temp_restore_dir
268
         rm -rf $temp_restore_dir
256
     fi
269
     fi
257
 
270
 
271
+    FEDWIKI_PASSWORD=$(cat ${FEDWIKI_DATA}/status/owner.json | grep secret | awk -F '"' '{print $4}')
272
+    ${PROJECT_NAME}-pass -u $FEDWIKI_USERNAME -a fedwiki -p "$FEDWIKI_PASSWORD"
273
+    sed -i "s|--cookieSecret .*|--cookieSecret '${FEDWIKI_PASSWORD}'|g" /etc/systemd/system/fedwiki.service
274
+    write_config_param "FEDWIKI_COOKIE" "$FEDWIKI_PASSWORD"
275
+    systemctl daemon-reload
258
     systemctl start fedwiki
276
     systemctl start fedwiki
259
     restart_site
277
     restart_site
260
 }
278
 }
333
         echo '  add_header X-Content-Type-Options nosniff;' >> $fedwiki_nginx_file
351
         echo '  add_header X-Content-Type-Options nosniff;' >> $fedwiki_nginx_file
334
         echo '  add_header Strict-Transport-Security max-age=15768000;' >> $fedwiki_nginx_file
352
         echo '  add_header Strict-Transport-Security max-age=15768000;' >> $fedwiki_nginx_file
335
         echo '' >> $fedwiki_nginx_file
353
         echo '' >> $fedwiki_nginx_file
354
+        echo '  location /fonts-font-awesome/ {' >> $fedwiki_nginx_file
355
+        echo '    alias /usr/share/fonts-font-awesome/;' >> $fedwiki_nginx_file
356
+        echo '  }' >> $fedwiki_nginx_file
357
+        echo '' >> $fedwiki_nginx_file
336
         echo '  location / {' >> $fedwiki_nginx_file
358
         echo '  location / {' >> $fedwiki_nginx_file
337
         echo "    proxy_pass http://localhost:${FEDWIKI_PORT};" >> $fedwiki_nginx_file
359
         echo "    proxy_pass http://localhost:${FEDWIKI_PORT};" >> $fedwiki_nginx_file
338
         echo '    proxy_set_header X-Real-IP $remote_addr;' >> $fedwiki_nginx_file
360
         echo '    proxy_set_header X-Real-IP $remote_addr;' >> $fedwiki_nginx_file
354
     echo '  add_header X-Frame-Options DENY;' >> $fedwiki_nginx_file
376
     echo '  add_header X-Frame-Options DENY;' >> $fedwiki_nginx_file
355
     echo '  add_header X-Content-Type-Options nosniff;' >> $fedwiki_nginx_file
377
     echo '  add_header X-Content-Type-Options nosniff;' >> $fedwiki_nginx_file
356
     echo '' >> $fedwiki_nginx_file
378
     echo '' >> $fedwiki_nginx_file
379
+    echo '  location /fonts-font-awesome/ {' >> $fedwiki_nginx_file
380
+    echo '    alias /usr/share/fonts-font-awesome/;' >> $fedwiki_nginx_file
381
+    echo '  }' >> $fedwiki_nginx_file
382
+    echo '' >> $fedwiki_nginx_file
357
     echo '  location / {' >> $fedwiki_nginx_file
383
     echo '  location / {' >> $fedwiki_nginx_file
358
     echo "    proxy_pass http://localhost:${FEDWIKI_PORT};" >> $fedwiki_nginx_file
384
     echo "    proxy_pass http://localhost:${FEDWIKI_PORT};" >> $fedwiki_nginx_file
359
     echo '    proxy_set_header X-Real-IP $remote_addr;' >> $fedwiki_nginx_file
385
     echo '    proxy_set_header X-Real-IP $remote_addr;' >> $fedwiki_nginx_file
401
     function_check install_nodejs
427
     function_check install_nodejs
402
     install_nodejs fedwiki
428
     install_nodejs fedwiki
403
 
429
 
430
+    apt-get -yq install fonts-font-awesome
431
+
404
     npm install -g wiki@$FEDWIKI_VERSION
432
     npm install -g wiki@$FEDWIKI_VERSION
405
     if [ ! "$?" = "0" ]; then
433
     if [ ! "$?" = "0" ]; then
406
         echo $'Failed to install fedwiki'
434
         echo $'Failed to install fedwiki'
426
     FEDWIKI_ONION_HOSTNAME=$(add_onion_service fedwiki 80 ${FEDWIKI_ONION_PORT})
454
     FEDWIKI_ONION_HOSTNAME=$(add_onion_service fedwiki 80 ${FEDWIKI_ONION_PORT})
427
 
455
 
428
     if [ ! $FEDWIKI_COOKIE ]; then
456
     if [ ! $FEDWIKI_COOKIE ]; then
429
-        FEDWIKI_COOKIE="$(create_password 30)"
457
+        FEDWIKI_COOKIE="$(create_password 20)"
430
     fi
458
     fi
431
 
459
 
432
     echo '[Unit]' > /etc/systemd/system/fedwiki.service
460
     echo '[Unit]' > /etc/systemd/system/fedwiki.service

+ 332
- 0
website/EN/app_fedwiki.html Ver fichero

1
+<?xml version="1.0" encoding="utf-8"?>
2
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
+<head>
6
+<!-- 2018-01-05 Fri 21:22 -->
7
+<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
+<meta name="viewport" content="width=device-width, initial-scale=1" />
9
+<title>&lrm;</title>
10
+<meta name="generator" content="Org mode" />
11
+<meta name="author" content="Bob Mottram" />
12
+<meta name="description" content="How to use Federated Wiki"
13
+ />
14
+<meta name="keywords" content="freedombone, fedwiki" />
15
+<style type="text/css">
16
+ <!--/*--><![CDATA[/*><!--*/
17
+  .title  { text-align: center;
18
+             margin-bottom: .2em; }
19
+  .subtitle { text-align: center;
20
+              font-size: medium;
21
+              font-weight: bold;
22
+              margin-top:0; }
23
+  .todo   { font-family: monospace; color: red; }
24
+  .done   { font-family: monospace; color: green; }
25
+  .priority { font-family: monospace; color: orange; }
26
+  .tag    { background-color: #eee; font-family: monospace;
27
+            padding: 2px; font-size: 80%; font-weight: normal; }
28
+  .timestamp { color: #bebebe; }
29
+  .timestamp-kwd { color: #5f9ea0; }
30
+  .org-right  { margin-left: auto; margin-right: 0px;  text-align: right; }
31
+  .org-left   { margin-left: 0px;  margin-right: auto; text-align: left; }
32
+  .org-center { margin-left: auto; margin-right: auto; text-align: center; }
33
+  .underline { text-decoration: underline; }
34
+  #postamble p, #preamble p { font-size: 90%; margin: .2em; }
35
+  p.verse { margin-left: 3%; }
36
+  pre {
37
+    border: 1px solid #ccc;
38
+    box-shadow: 3px 3px 3px #eee;
39
+    padding: 8pt;
40
+    font-family: monospace;
41
+    overflow: auto;
42
+    margin: 1.2em;
43
+  }
44
+  pre.src {
45
+    position: relative;
46
+    overflow: visible;
47
+    padding-top: 1.2em;
48
+  }
49
+  pre.src:before {
50
+    display: none;
51
+    position: absolute;
52
+    background-color: white;
53
+    top: -10px;
54
+    right: 10px;
55
+    padding: 3px;
56
+    border: 1px solid black;
57
+  }
58
+  pre.src:hover:before { display: inline;}
59
+  /* Languages per Org manual */
60
+  pre.src-asymptote:before { content: 'Asymptote'; }
61
+  pre.src-awk:before { content: 'Awk'; }
62
+  pre.src-C:before { content: 'C'; }
63
+  /* pre.src-C++ doesn't work in CSS */
64
+  pre.src-clojure:before { content: 'Clojure'; }
65
+  pre.src-css:before { content: 'CSS'; }
66
+  pre.src-D:before { content: 'D'; }
67
+  pre.src-ditaa:before { content: 'ditaa'; }
68
+  pre.src-dot:before { content: 'Graphviz'; }
69
+  pre.src-calc:before { content: 'Emacs Calc'; }
70
+  pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
71
+  pre.src-fortran:before { content: 'Fortran'; }
72
+  pre.src-gnuplot:before { content: 'gnuplot'; }
73
+  pre.src-haskell:before { content: 'Haskell'; }
74
+  pre.src-hledger:before { content: 'hledger'; }
75
+  pre.src-java:before { content: 'Java'; }
76
+  pre.src-js:before { content: 'Javascript'; }
77
+  pre.src-latex:before { content: 'LaTeX'; }
78
+  pre.src-ledger:before { content: 'Ledger'; }
79
+  pre.src-lisp:before { content: 'Lisp'; }
80
+  pre.src-lilypond:before { content: 'Lilypond'; }
81
+  pre.src-lua:before { content: 'Lua'; }
82
+  pre.src-matlab:before { content: 'MATLAB'; }
83
+  pre.src-mscgen:before { content: 'Mscgen'; }
84
+  pre.src-ocaml:before { content: 'Objective Caml'; }
85
+  pre.src-octave:before { content: 'Octave'; }
86
+  pre.src-org:before { content: 'Org mode'; }
87
+  pre.src-oz:before { content: 'OZ'; }
88
+  pre.src-plantuml:before { content: 'Plantuml'; }
89
+  pre.src-processing:before { content: 'Processing.js'; }
90
+  pre.src-python:before { content: 'Python'; }
91
+  pre.src-R:before { content: 'R'; }
92
+  pre.src-ruby:before { content: 'Ruby'; }
93
+  pre.src-sass:before { content: 'Sass'; }
94
+  pre.src-scheme:before { content: 'Scheme'; }
95
+  pre.src-screen:before { content: 'Gnu Screen'; }
96
+  pre.src-sed:before { content: 'Sed'; }
97
+  pre.src-sh:before { content: 'shell'; }
98
+  pre.src-sql:before { content: 'SQL'; }
99
+  pre.src-sqlite:before { content: 'SQLite'; }
100
+  /* additional languages in org.el's org-babel-load-languages alist */
101
+  pre.src-forth:before { content: 'Forth'; }
102
+  pre.src-io:before { content: 'IO'; }
103
+  pre.src-J:before { content: 'J'; }
104
+  pre.src-makefile:before { content: 'Makefile'; }
105
+  pre.src-maxima:before { content: 'Maxima'; }
106
+  pre.src-perl:before { content: 'Perl'; }
107
+  pre.src-picolisp:before { content: 'Pico Lisp'; }
108
+  pre.src-scala:before { content: 'Scala'; }
109
+  pre.src-shell:before { content: 'Shell Script'; }
110
+  pre.src-ebnf2ps:before { content: 'ebfn2ps'; }
111
+  /* additional language identifiers per "defun org-babel-execute"
112
+       in ob-*.el */
113
+  pre.src-cpp:before  { content: 'C++'; }
114
+  pre.src-abc:before  { content: 'ABC'; }
115
+  pre.src-coq:before  { content: 'Coq'; }
116
+  pre.src-groovy:before  { content: 'Groovy'; }
117
+  /* additional language identifiers from org-babel-shell-names in
118
+     ob-shell.el: ob-shell is the only babel language using a lambda to put
119
+     the execution function name together. */
120
+  pre.src-bash:before  { content: 'bash'; }
121
+  pre.src-csh:before  { content: 'csh'; }
122
+  pre.src-ash:before  { content: 'ash'; }
123
+  pre.src-dash:before  { content: 'dash'; }
124
+  pre.src-ksh:before  { content: 'ksh'; }
125
+  pre.src-mksh:before  { content: 'mksh'; }
126
+  pre.src-posh:before  { content: 'posh'; }
127
+  /* Additional Emacs modes also supported by the LaTeX listings package */
128
+  pre.src-ada:before { content: 'Ada'; }
129
+  pre.src-asm:before { content: 'Assembler'; }
130
+  pre.src-caml:before { content: 'Caml'; }
131
+  pre.src-delphi:before { content: 'Delphi'; }
132
+  pre.src-html:before { content: 'HTML'; }
133
+  pre.src-idl:before { content: 'IDL'; }
134
+  pre.src-mercury:before { content: 'Mercury'; }
135
+  pre.src-metapost:before { content: 'MetaPost'; }
136
+  pre.src-modula-2:before { content: 'Modula-2'; }
137
+  pre.src-pascal:before { content: 'Pascal'; }
138
+  pre.src-ps:before { content: 'PostScript'; }
139
+  pre.src-prolog:before { content: 'Prolog'; }
140
+  pre.src-simula:before { content: 'Simula'; }
141
+  pre.src-tcl:before { content: 'tcl'; }
142
+  pre.src-tex:before { content: 'TeX'; }
143
+  pre.src-plain-tex:before { content: 'Plain TeX'; }
144
+  pre.src-verilog:before { content: 'Verilog'; }
145
+  pre.src-vhdl:before { content: 'VHDL'; }
146
+  pre.src-xml:before { content: 'XML'; }
147
+  pre.src-nxml:before { content: 'XML'; }
148
+  /* add a generic configuration mode; LaTeX export needs an additional
149
+     (add-to-list 'org-latex-listings-langs '(conf " ")) in .emacs */
150
+  pre.src-conf:before { content: 'Configuration File'; }
151
+
152
+  table { border-collapse:collapse; }
153
+  caption.t-above { caption-side: top; }
154
+  caption.t-bottom { caption-side: bottom; }
155
+  td, th { vertical-align:top;  }
156
+  th.org-right  { text-align: center;  }
157
+  th.org-left   { text-align: center;   }
158
+  th.org-center { text-align: center; }
159
+  td.org-right  { text-align: right;  }
160
+  td.org-left   { text-align: left;   }
161
+  td.org-center { text-align: center; }
162
+  dt { font-weight: bold; }
163
+  .footpara { display: inline; }
164
+  .footdef  { margin-bottom: 1em; }
165
+  .figure { padding: 1em; }
166
+  .figure p { text-align: center; }
167
+  .inlinetask {
168
+    padding: 10px;
169
+    border: 2px solid gray;
170
+    margin: 10px;
171
+    background: #ffffcc;
172
+  }
173
+  #org-div-home-and-up
174
+   { text-align: right; font-size: 70%; white-space: nowrap; }
175
+  textarea { overflow-x: auto; }
176
+  .linenr { font-size: smaller }
177
+  .code-highlighted { background-color: #ffff00; }
178
+  .org-info-js_info-navigation { border-style: none; }
179
+  #org-info-js_console-label
180
+    { font-size: 10px; font-weight: bold; white-space: nowrap; }
181
+  .org-info-js_search-highlight
182
+    { background-color: #ffff00; color: #000000; font-weight: bold; }
183
+  .org-svg { width: 90%; }
184
+  /*]]>*/-->
185
+</style>
186
+<link rel="stylesheet" type="text/css" href="freedombone.css" />
187
+<script type="text/javascript">
188
+/*
189
+@licstart  The following is the entire license notice for the
190
+JavaScript code in this tag.
191
+
192
+Copyright (C) 2012-2017 Free Software Foundation, Inc.
193
+
194
+The JavaScript code in this tag is free software: you can
195
+redistribute it and/or modify it under the terms of the GNU
196
+General Public License (GNU GPL) as published by the Free Software
197
+Foundation, either version 3 of the License, or (at your option)
198
+any later version.  The code is distributed WITHOUT ANY WARRANTY;
199
+without even the implied warranty of MERCHANTABILITY or FITNESS
200
+FOR A PARTICULAR PURPOSE.  See the GNU GPL for more details.
201
+
202
+As additional permission under GNU GPL version 3 section 7, you
203
+may distribute non-source (e.g., minimized or compacted) forms of
204
+that code without the copy of the GNU GPL normally required by
205
+section 4, provided you include this license notice and a URL
206
+through which recipients can access the Corresponding Source.
207
+
208
+
209
+@licend  The above is the entire license notice
210
+for the JavaScript code in this tag.
211
+*/
212
+<!--/*--><![CDATA[/*><!--*/
213
+ function CodeHighlightOn(elem, id)
214
+ {
215
+   var target = document.getElementById(id);
216
+   if(null != target) {
217
+     elem.cacheClassElem = elem.className;
218
+     elem.cacheClassTarget = target.className;
219
+     target.className = "code-highlighted";
220
+     elem.className   = "code-highlighted";
221
+   }
222
+ }
223
+ function CodeHighlightOff(elem, id)
224
+ {
225
+   var target = document.getElementById(id);
226
+   if(elem.cacheClassElem)
227
+     elem.className = elem.cacheClassElem;
228
+   if(elem.cacheClassTarget)
229
+     target.className = elem.cacheClassTarget;
230
+ }
231
+/*]]>*///-->
232
+</script>
233
+</head>
234
+<body>
235
+<div id="preamble" class="status">
236
+<a name="top" id="top"></a>
237
+</div>
238
+<div id="content">
239
+<div class="org-center">
240
+
241
+<div class="figure">
242
+<p><img src="images/logo.png" alt="logo.png" />
243
+</p>
244
+</div>
245
+</div>
246
+
247
+<center>
248
+<h1>Federated Wiki</h1>
249
+</center>
250
+
251
+<p>
252
+Federated wikis are a relatively new concept. There can be multiple copies of the same page on different servers and it's then easy to pick which version you prefer, or make something new. It's like wiki meets mashup meets federation, and so is different from many previous web paradigms and may take some recalibration of how you think the web should work.
253
+</p>
254
+
255
+<div id="outline-container-org18ce860" class="outline-2">
256
+<h2 id="org18ce860">Installation</h2>
257
+<div class="outline-text-2" id="text-org18ce860">
258
+<p>
259
+Log into your system with:
260
+</p>
261
+
262
+<div class="org-src-container">
263
+<pre class="src src-bash">ssh myusername@mydomain -p 2222
264
+</pre>
265
+</div>
266
+
267
+<p>
268
+Using cursor keys, space bar and Enter key select <b>Administrator controls</b> and type in your password.
269
+</p>
270
+
271
+<p>
272
+Select <b>Add/Remove Apps</b> then <b>fedwiki</b>. You will then be asked for a domain name and if you are using FreeDNS also the code for the domain which can be found under <b>Dynamic DNS</b> on the FreeDNS site (the random string from "<i>quick cron example</i>" which appears after <i>update.php?</i> and before <i>&gt;&gt;</i>). For more details on obtaining a domain and making it accessible via dynamic DNS see the <a href="./faq.html">FAQ</a>. Typically the domain name you use will be a subdomain, such as <i>wiki.mydomainname.net</i>. It will need to be a domain which you have bought somewhere and own and not one of the FreeDNS subdomains, otherwise you won't be able to get a SSL/TLS certificate for it.
273
+</p>
274
+</div>
275
+</div>
276
+
277
+
278
+<div id="outline-container-org6c011dd" class="outline-2">
279
+<h2 id="org6c011dd">Usage</h2>
280
+<div class="outline-text-2" id="text-org6c011dd">
281
+<p>
282
+First you'll need to get the login password, which can be found on the <b>Administrator control panel</b> under <b>Passwords</b> then <b>fedwiki</b>.
283
+</p>
284
+
285
+<p>
286
+Navigate to your wiki site then click on the <b>lock icon</b> at the bottom of the screen and enter the password. It should then appear unlocked. If you don't unlock then any edits you make won't be saved.
287
+</p>
288
+
289
+<p>
290
+There are a few things to know about using the federated wiki.
291
+</p>
292
+
293
+<ul class="org-ul">
294
+<li>You can edit by clicking on the <b>wiki</b> button at the bottom of the screen</li>
295
+<li>To edit a paragraph double click on it</li>
296
+<li>To remove a paragraph just delete all of its text</li>
297
+<li>Paragraphs can be dragged up and down to change their order, or moved between pages</li>
298
+<li>To add a new paragraph use the <b>+</b> button</li>
299
+<li>You can use left and right cursor keys to move through pages</li>
300
+<li>To claim/fork a page from another server click on the flag icon</li>
301
+<li>When done editing click on the <b>wiki</b> button again</li>
302
+<li>Different versions of the same page on different servers are represented by boxes at the bottom right of the screen. You can double click on them to see the different versions, and use the flag icon to fork if you prefer that version</li>
303
+</ul>
304
+</div>
305
+</div>
306
+</div>
307
+<div id="postamble" class="status">
308
+
309
+<style type="text/css">
310
+.back-to-top {
311
+    position: fixed;
312
+    bottom: 2em;
313
+    right: 0px;
314
+    text-decoration: none;
315
+    color: #000000;
316
+    background-color: rgba(235, 235, 235, 0.80);
317
+    font-size: 12px;
318
+    padding: 1em;
319
+    display: none;
320
+}
321
+
322
+.back-to-top:hover {
323
+    background-color: rgba(135, 135, 135, 0.50);
324
+}
325
+</style>
326
+
327
+<div class="back-to-top">
328
+<a href="#top">Back to top</a> | <a href="mailto:bob@freedombone.net">E-mail me</a>
329
+</div>
330
+</div>
331
+</body>
332
+</html>

+ 130
- 118
website/EN/apps.html Ver fichero

3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4
 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
5
 <head>
5
 <head>
6
-<!-- 2017-12-20 Wed 23:36 -->
6
+<!-- 2018-01-05 Fri 21:25 -->
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
7
 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
8
 <meta name="viewport" content="width=device-width, initial-scale=1" />
9
 <title>&lrm;</title>
9
 <title>&lrm;</title>
265
 </div>
265
 </div>
266
 
266
 
267
 
267
 
268
-<div id="outline-container-org351bae6" class="outline-2">
269
-<h2 id="org351bae6">Akaunting</h2>
270
-<div class="outline-text-2" id="text-org351bae6">
268
+<div id="outline-container-orge16af4e" class="outline-2">
269
+<h2 id="orge16af4e">Akaunting</h2>
270
+<div class="outline-text-2" id="text-orge16af4e">
271
 <p>
271
 <p>
272
 A web based accounts system for small businesses or freelancers.
272
 A web based accounts system for small businesses or freelancers.
273
 </p>
273
 </p>
277
 </p>
277
 </p>
278
 </div>
278
 </div>
279
 </div>
279
 </div>
280
-<div id="outline-container-orge2d6b13" class="outline-2">
281
-<h2 id="orge2d6b13">CryptPad</h2>
282
-<div class="outline-text-2" id="text-orge2d6b13">
280
+<div id="outline-container-org6efc751" class="outline-2">
281
+<h2 id="org6efc751">CryptPad</h2>
282
+<div class="outline-text-2" id="text-org6efc751">
283
 <p>
283
 <p>
284
 Collaborate on editing documents, presentations and source code, or vote on things. All with a good level of security.
284
 Collaborate on editing documents, presentations and source code, or vote on things. All with a good level of security.
285
 </p>
285
 </p>
289
 </p>
289
 </p>
290
 </div>
290
 </div>
291
 </div>
291
 </div>
292
-<div id="outline-container-org8762555" class="outline-2">
293
-<h2 id="org8762555">DLNA</h2>
294
-<div class="outline-text-2" id="text-org8762555">
292
+<div id="outline-container-org62f6d93" class="outline-2">
293
+<h2 id="org62f6d93">DLNA</h2>
294
+<div class="outline-text-2" id="text-org62f6d93">
295
 <p>
295
 <p>
296
 Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
296
 Enables you to use the system as a music server which any DLNA compatible devices can connect to within your home network.
297
 </p>
297
 </p>
301
 </p>
301
 </p>
302
 </div>
302
 </div>
303
 </div>
303
 </div>
304
-<div id="outline-container-orgeb82d0e" class="outline-2">
305
-<h2 id="orgeb82d0e">Dokuwiki</h2>
306
-<div class="outline-text-2" id="text-orgeb82d0e">
304
+<div id="outline-container-orgf0c5fe6" class="outline-2">
305
+<h2 id="orgf0c5fe6">Dokuwiki</h2>
306
+<div class="outline-text-2" id="text-orgf0c5fe6">
307
 <p>
307
 <p>
308
 A databaseless wiki system.
308
 A databaseless wiki system.
309
 </p>
309
 </p>
313
 </p>
313
 </p>
314
 </div>
314
 </div>
315
 </div>
315
 </div>
316
-<div id="outline-container-orgd08f244" class="outline-2">
317
-<h2 id="orgd08f244">Emacs</h2>
318
-<div class="outline-text-2" id="text-orgd08f244">
316
+<div id="outline-container-org6d033b0" class="outline-2">
317
+<h2 id="org6d033b0">Emacs</h2>
318
+<div class="outline-text-2" id="text-org6d033b0">
319
 <p>
319
 <p>
320
 If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
320
 If you use the Mutt client to read your email then this will set it up to use emacs for composing new mail.
321
 </p>
321
 </p>
325
 </p>
325
 </p>
326
 </div>
326
 </div>
327
 </div>
327
 </div>
328
-<div id="outline-container-orgae371e7" class="outline-2">
329
-<h2 id="orgae371e7">Etherpad</h2>
330
-<div class="outline-text-2" id="text-orgae371e7">
328
+<div id="outline-container-orgf1ad90c" class="outline-2">
329
+<h2 id="orgf1ad90c">Etherpad</h2>
330
+<div class="outline-text-2" id="text-orgf1ad90c">
331
 <p>
331
 <p>
332
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
332
 Collaborate on creating documents in real time. Maybe you're planning a holiday with other family members or creating documentation for a Free Software project along with other volunteers. Etherpad is hard to beat for simplicity and speed. Only users of the system will be able to access it.
333
 </p>
333
 </p>
337
 </p>
337
 </p>
338
 </div>
338
 </div>
339
 </div>
339
 </div>
340
-<div id="outline-container-org4300e45" class="outline-2">
341
-<h2 id="org4300e45">Friendica</h2>
342
-<div class="outline-text-2" id="text-org4300e45">
340
+<div id="outline-container-orgd1c7a69" class="outline-2">
341
+<h2 id="orgd1c7a69">Federated wiki</h2>
342
+<div class="outline-text-2" id="text-orgd1c7a69">
343
+<p>
344
+A new approach to creating wiki content.
345
+</p>
346
+
347
+<p>
348
+<a href="./app_fedwiki.html">How to use it</a>
349
+</p>
350
+</div>
351
+</div>
352
+<div id="outline-container-orgdf26871" class="outline-2">
353
+<h2 id="orgdf26871">Friendica</h2>
354
+<div class="outline-text-2" id="text-orgdf26871">
343
 <p>
355
 <p>
344
 Federated social network system.
356
 Federated social network system.
345
 </p>
357
 </p>
349
 </p>
361
 </p>
350
 </div>
362
 </div>
351
 </div>
363
 </div>
352
-<div id="outline-container-org8cae058" class="outline-2">
353
-<h2 id="org8cae058">Ghost</h2>
354
-<div class="outline-text-2" id="text-org8cae058">
364
+<div id="outline-container-org0c18927" class="outline-2">
365
+<h2 id="org0c18927">Ghost</h2>
366
+<div class="outline-text-2" id="text-org0c18927">
355
 <p>
367
 <p>
356
 Modern looking blogging system.
368
 Modern looking blogging system.
357
 </p>
369
 </p>
361
 </p>
373
 </p>
362
 </div>
374
 </div>
363
 </div>
375
 </div>
364
-<div id="outline-container-org52c14c7" class="outline-2">
365
-<h2 id="org52c14c7">GNU Social</h2>
366
-<div class="outline-text-2" id="text-org52c14c7">
376
+<div id="outline-container-org6464a0f" class="outline-2">
377
+<h2 id="org6464a0f">GNU Social</h2>
378
+<div class="outline-text-2" id="text-org6464a0f">
367
 <p>
379
 <p>
368
 Federated social network based on the OStatus protocol. You can "<i>remote follow</i>" other users within the GNU Social federation.
380
 Federated social network based on the OStatus protocol. You can "<i>remote follow</i>" other users within the GNU Social federation.
369
 </p>
381
 </p>
373
 </p>
385
 </p>
374
 </div>
386
 </div>
375
 </div>
387
 </div>
376
-<div id="outline-container-org1bb5d47" class="outline-2">
377
-<h2 id="org1bb5d47">Gogs</h2>
378
-<div class="outline-text-2" id="text-org1bb5d47">
388
+<div id="outline-container-orgc558982" class="outline-2">
389
+<h2 id="orgc558982">Gogs</h2>
390
+<div class="outline-text-2" id="text-orgc558982">
379
 <p>
391
 <p>
380
 Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs.
392
 Lightweight git project hosting system. You can mirror projects from Github, or if Github turns evil then just host your own projects while retaining the familiar <i>fork-and-pull</i> workflow. If you can use Github then you can also use Gogs.
381
 </p>
393
 </p>
385
 </p>
397
 </p>
386
 </div>
398
 </div>
387
 </div>
399
 </div>
388
-<div id="outline-container-orgff3e945" class="outline-2">
389
-<h2 id="orgff3e945">HTMLy</h2>
390
-<div class="outline-text-2" id="text-orgff3e945">
400
+<div id="outline-container-org6c43921" class="outline-2">
401
+<h2 id="org6c43921">HTMLy</h2>
402
+<div class="outline-text-2" id="text-org6c43921">
391
 <p>
403
 <p>
392
 Databaseless blogging system. Quite simple and with a markdown-like format.
404
 Databaseless blogging system. Quite simple and with a markdown-like format.
393
 </p>
405
 </p>
397
 </p>
409
 </p>
398
 </div>
410
 </div>
399
 </div>
411
 </div>
400
-<div id="outline-container-orgdc01553" class="outline-2">
401
-<h2 id="orgdc01553">Hubzilla</h2>
402
-<div class="outline-text-2" id="text-orgdc01553">
412
+<div id="outline-container-org7ac9b48" class="outline-2">
413
+<h2 id="org7ac9b48">Hubzilla</h2>
414
+<div class="outline-text-2" id="text-org7ac9b48">
403
 <p>
415
 <p>
404
 Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.
416
 Web publishing platform with social network like features and good privacy controls so that it's possible to specify who can see which content. Includes photo albums, calendar, wiki and file storage.
405
 </p>
417
 </p>
409
 </p>
421
 </p>
410
 </div>
422
 </div>
411
 </div>
423
 </div>
412
-<div id="outline-container-orgea26aa5" class="outline-2">
413
-<h2 id="orgea26aa5">Icecast media stream</h2>
414
-<div class="outline-text-2" id="text-orgea26aa5">
424
+<div id="outline-container-org7ca0a6c" class="outline-2">
425
+<h2 id="org7ca0a6c">Icecast media stream</h2>
426
+<div class="outline-text-2" id="text-org7ca0a6c">
415
 <p>
427
 <p>
416
 Make your own internet radio station.
428
 Make your own internet radio station.
417
 </p>
429
 </p>
421
 </p>
433
 </p>
422
 </div>
434
 </div>
423
 </div>
435
 </div>
424
-<div id="outline-container-orgd35f348" class="outline-2">
425
-<h2 id="orgd35f348">IRC Server (ngirc)</h2>
426
-<div class="outline-text-2" id="text-orgd35f348">
436
+<div id="outline-container-org84ae949" class="outline-2">
437
+<h2 id="org84ae949">IRC Server (ngirc)</h2>
438
+<div class="outline-text-2" id="text-org84ae949">
427
 <p>
439
 <p>
428
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
440
 Run your own IRC chat channel which can be secured with a password and accessible via an onion address. A bouncer is included so that you can receive messages sent while you were offline. Works with Hexchat and other popular clients.
429
 </p>
441
 </p>
433
 </p>
445
 </p>
434
 </div>
446
 </div>
435
 </div>
447
 </div>
436
-<div id="outline-container-org6a1a594" class="outline-2">
437
-<h2 id="org6a1a594">Jitsi Meet</h2>
438
-<div class="outline-text-2" id="text-org6a1a594">
448
+<div id="outline-container-orgf1eff7b" class="outline-2">
449
+<h2 id="orgf1eff7b">Jitsi Meet</h2>
450
+<div class="outline-text-2" id="text-orgf1eff7b">
439
 <p>
451
 <p>
440
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
452
 Experimental WebRTC video conferencing system, similar to Google Hangouts. This may not be fully functional, but is hoped to be in the near future.
441
 </p>
453
 </p>
442
 </div>
454
 </div>
443
 </div>
455
 </div>
444
 
456
 
445
-<div id="outline-container-org1ee358e" class="outline-2">
446
-<h2 id="org1ee358e">KanBoard</h2>
447
-<div class="outline-text-2" id="text-org1ee358e">
457
+<div id="outline-container-org35fd10e" class="outline-2">
458
+<h2 id="org35fd10e">KanBoard</h2>
459
+<div class="outline-text-2" id="text-org35fd10e">
448
 <p>
460
 <p>
449
 A simple kanban system for managing projects or TODO lists.
461
 A simple kanban system for managing projects or TODO lists.
450
 </p>
462
 </p>
454
 </p>
466
 </p>
455
 </div>
467
 </div>
456
 </div>
468
 </div>
457
-<div id="outline-container-orge30d805" class="outline-2">
458
-<h2 id="orge30d805">Key Server</h2>
459
-<div class="outline-text-2" id="text-orge30d805">
469
+<div id="outline-container-orgce70d61" class="outline-2">
470
+<h2 id="orgce70d61">Key Server</h2>
471
+<div class="outline-text-2" id="text-orgce70d61">
460
 <p>
472
 <p>
461
 An OpenPGP key server for storing and retrieving GPG public keys.
473
 An OpenPGP key server for storing and retrieving GPG public keys.
462
 </p>
474
 </p>
466
 </p>
478
 </p>
467
 </div>
479
 </div>
468
 </div>
480
 </div>
469
-<div id="outline-container-org240e85f" class="outline-2">
470
-<h2 id="org240e85f">Koel</h2>
471
-<div class="outline-text-2" id="text-org240e85f">
481
+<div id="outline-container-org92af635" class="outline-2">
482
+<h2 id="org92af635">Koel</h2>
483
+<div class="outline-text-2" id="text-org92af635">
472
 <p>
484
 <p>
473
 Access your music collection from any internet connected device.
485
 Access your music collection from any internet connected device.
474
 </p>
486
 </p>
478
 </p>
490
 </p>
479
 </div>
491
 </div>
480
 </div>
492
 </div>
481
-<div id="outline-container-orgb81a1c2" class="outline-2">
482
-<h2 id="orgb81a1c2">Lychee</h2>
483
-<div class="outline-text-2" id="text-orgb81a1c2">
493
+<div id="outline-container-org0a8722e" class="outline-2">
494
+<h2 id="org0a8722e">Lychee</h2>
495
+<div class="outline-text-2" id="text-org0a8722e">
484
 <p>
496
 <p>
485
 Make your photo albums available on the web.
497
 Make your photo albums available on the web.
486
 </p>
498
 </p>
490
 </p>
502
 </p>
491
 </div>
503
 </div>
492
 </div>
504
 </div>
493
-<div id="outline-container-org1ad9b1b" class="outline-2">
494
-<h2 id="org1ad9b1b">Mailpile</h2>
495
-<div class="outline-text-2" id="text-org1ad9b1b">
505
+<div id="outline-container-orgdda9e48" class="outline-2">
506
+<h2 id="orgdda9e48">Mailpile</h2>
507
+<div class="outline-text-2" id="text-orgdda9e48">
496
 <p>
508
 <p>
497
 Modern email client which supports GPG encryption.
509
 Modern email client which supports GPG encryption.
498
 </p>
510
 </p>
502
 </p>
514
 </p>
503
 </div>
515
 </div>
504
 </div>
516
 </div>
505
-<div id="outline-container-orgbb8fed1" class="outline-2">
506
-<h2 id="orgbb8fed1">Matrix</h2>
507
-<div class="outline-text-2" id="text-orgbb8fed1">
517
+<div id="outline-container-org0e639e8" class="outline-2">
518
+<h2 id="org0e639e8">Matrix</h2>
519
+<div class="outline-text-2" id="text-org0e639e8">
508
 <p>
520
 <p>
509
 Multi-user chat with some security and moderation controls.
521
 Multi-user chat with some security and moderation controls.
510
 </p>
522
 </p>
514
 </p>
526
 </p>
515
 </div>
527
 </div>
516
 </div>
528
 </div>
517
-<div id="outline-container-org264a933" class="outline-2">
518
-<h2 id="org264a933">Mediagoblin</h2>
519
-<div class="outline-text-2" id="text-org264a933">
529
+<div id="outline-container-org67e6388" class="outline-2">
530
+<h2 id="org67e6388">Mediagoblin</h2>
531
+<div class="outline-text-2" id="text-org67e6388">
520
 <p>
532
 <p>
521
 Publicly host video and audio files so that you don't need to use YouTube/Vimeo/etc.
533
 Publicly host video and audio files so that you don't need to use YouTube/Vimeo/etc.
522
 </p>
534
 </p>
526
 </p>
538
 </p>
527
 </div>
539
 </div>
528
 </div>
540
 </div>
529
-<div id="outline-container-org5f27565" class="outline-2">
530
-<h2 id="org5f27565">Mumble</h2>
531
-<div class="outline-text-2" id="text-org5f27565">
541
+<div id="outline-container-org95ad392" class="outline-2">
542
+<h2 id="org95ad392">Mumble</h2>
543
+<div class="outline-text-2" id="text-org95ad392">
532
 <p>
544
 <p>
533
 The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
545
 The popular VoIP and text chat system. Say goodbye to old-fashioned telephony conferences with silly dial codes. Also works well on mobile.
534
 </p>
546
 </p>
538
 </p>
550
 </p>
539
 </div>
551
 </div>
540
 </div>
552
 </div>
541
-<div id="outline-container-org532c52b" class="outline-2">
542
-<h2 id="org532c52b">NextCloud</h2>
543
-<div class="outline-text-2" id="text-org532c52b">
553
+<div id="outline-container-org83f8149" class="outline-2">
554
+<h2 id="org83f8149">NextCloud</h2>
555
+<div class="outline-text-2" id="text-org83f8149">
544
 <p>
556
 <p>
545
 Store files on your server and sync them with laptops or mobile devices. Includes many plugins including videoconferencing and collaborative document editing.
557
 Store files on your server and sync them with laptops or mobile devices. Includes many plugins including videoconferencing and collaborative document editing.
546
 </p>
558
 </p>
550
 </p>
562
 </p>
551
 </div>
563
 </div>
552
 </div>
564
 </div>
553
-<div id="outline-container-org9067728" class="outline-2">
554
-<h2 id="org9067728">PeerTube</h2>
555
-<div class="outline-text-2" id="text-org9067728">
565
+<div id="outline-container-org34376ed" class="outline-2">
566
+<h2 id="org34376ed">PeerTube</h2>
567
+<div class="outline-text-2" id="text-org34376ed">
556
 <p>
568
 <p>
557
 Peer-to-peer video hosting. Similar to Mediagoblin, but the P2P aspect better enables the streaming load to be shared across servers.
569
 Peer-to-peer video hosting. Similar to Mediagoblin, but the P2P aspect better enables the streaming load to be shared across servers.
558
 </p>
570
 </p>
562
 </p>
574
 </p>
563
 </div>
575
 </div>
564
 </div>
576
 </div>
565
-<div id="outline-container-orgf62f97e" class="outline-2">
566
-<h2 id="orgf62f97e">PI-Hole</h2>
567
-<div class="outline-text-2" id="text-orgf62f97e">
577
+<div id="outline-container-org5f60689" class="outline-2">
578
+<h2 id="org5f60689">PI-Hole</h2>
579
+<div class="outline-text-2" id="text-org5f60689">
568
 <p>
580
 <p>
569
 The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.
581
 The black hole for web adverts. Block adverts at the domain name level within your local network. It can significantly reduce bandwidth, speed up page load times and protect your systems from being tracked by spyware.
570
 </p>
582
 </p>
574
 </p>
586
 </p>
575
 </div>
587
 </div>
576
 </div>
588
 </div>
577
-<div id="outline-container-orgdb42e0c" class="outline-2">
578
-<h2 id="orgdb42e0c">Pleroma</h2>
579
-<div class="outline-text-2" id="text-orgdb42e0c">
589
+<div id="outline-container-org701c17b" class="outline-2">
590
+<h2 id="org701c17b">Pleroma</h2>
591
+<div class="outline-text-2" id="text-org701c17b">
580
 <p>
592
 <p>
581
 Pleroma is an OStatus-compatible social networking server, compatible with GNU Social, PostActiv and Mastodon. It is high-performance and so is especially well suited for running on low power single board computers without much RAM.
593
 Pleroma is an OStatus-compatible social networking server, compatible with GNU Social, PostActiv and Mastodon. It is high-performance and so is especially well suited for running on low power single board computers without much RAM.
582
 </p>
594
 </p>
586
 </p>
598
 </p>
587
 </div>
599
 </div>
588
 </div>
600
 </div>
589
-<div id="outline-container-org13c41ff" class="outline-2">
590
-<h2 id="org13c41ff">PostActiv</h2>
591
-<div class="outline-text-2" id="text-org13c41ff">
601
+<div id="outline-container-org1b0cb48" class="outline-2">
602
+<h2 id="org1b0cb48">PostActiv</h2>
603
+<div class="outline-text-2" id="text-org1b0cb48">
592
 <p>
604
 <p>
593
 An alternative federated social networking system compatible with GNU Social, Pleroma and Mastodon. It includes some optimisations and fixes currently not available within the main GNU Social project.
605
 An alternative federated social networking system compatible with GNU Social, Pleroma and Mastodon. It includes some optimisations and fixes currently not available within the main GNU Social project.
594
 </p>
606
 </p>
598
 </p>
610
 </p>
599
 </div>
611
 </div>
600
 </div>
612
 </div>
601
-<div id="outline-container-org2eaba6a" class="outline-2">
602
-<h2 id="org2eaba6a">Profanity</h2>
603
-<div class="outline-text-2" id="text-org2eaba6a">
613
+<div id="outline-container-org160c5ab" class="outline-2">
614
+<h2 id="org160c5ab">Profanity</h2>
615
+<div class="outline-text-2" id="text-org160c5ab">
604
 <p>
616
 <p>
605
 A shell based XMPP client which you can run on the Freedombone server via ssh.
617
 A shell based XMPP client which you can run on the Freedombone server via ssh.
606
 </p>
618
 </p>
610
 </p>
622
 </p>
611
 </div>
623
 </div>
612
 </div>
624
 </div>
613
-<div id="outline-container-org201d591" class="outline-2">
614
-<h2 id="org201d591">Riot Web</h2>
615
-<div class="outline-text-2" id="text-org201d591">
625
+<div id="outline-container-org9d02ce0" class="outline-2">
626
+<h2 id="org9d02ce0">Riot Web</h2>
627
+<div class="outline-text-2" id="text-org9d02ce0">
616
 <p>
628
 <p>
617
 A browser based user interface for the Matrix federated communications system, including WebRTC audio and video chat.
629
 A browser based user interface for the Matrix federated communications system, including WebRTC audio and video chat.
618
 </p>
630
 </p>
622
 </p>
634
 </p>
623
 </div>
635
 </div>
624
 </div>
636
 </div>
625
-<div id="outline-container-org46bc137" class="outline-2">
626
-<h2 id="org46bc137">SearX</h2>
627
-<div class="outline-text-2" id="text-org46bc137">
637
+<div id="outline-container-org737de9a" class="outline-2">
638
+<h2 id="org737de9a">SearX</h2>
639
+<div class="outline-text-2" id="text-org737de9a">
628
 <p>
640
 <p>
629
 A metasearch engine for customised and private web searches.
641
 A metasearch engine for customised and private web searches.
630
 </p>
642
 </p>
634
 </p>
646
 </p>
635
 </div>
647
 </div>
636
 </div>
648
 </div>
637
-<div id="outline-container-org8fff378" class="outline-2">
638
-<h2 id="org8fff378">tt-rss</h2>
639
-<div class="outline-text-2" id="text-org8fff378">
649
+<div id="outline-container-org13d4ded" class="outline-2">
650
+<h2 id="org13d4ded">tt-rss</h2>
651
+<div class="outline-text-2" id="text-org13d4ded">
640
 <p>
652
 <p>
641
 Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
653
 Private RSS reader. Pulls in RSS/Atom feeds via Tor and is only accessible via an onion address. Have "<i>the right to read</i>" without the Surveillance State knowing what you're reading. Also available with a user interface suitable for viewing on mobile devices via a browser such as OrFox.
642
 </p>
654
 </p>
646
 </p>
658
 </p>
647
 </div>
659
 </div>
648
 </div>
660
 </div>
649
-<div id="outline-container-org932f267" class="outline-2">
650
-<h2 id="org932f267">Syncthing</h2>
651
-<div class="outline-text-2" id="text-org932f267">
661
+<div id="outline-container-org7dfad5f" class="outline-2">
662
+<h2 id="org7dfad5f">Syncthing</h2>
663
+<div class="outline-text-2" id="text-org7dfad5f">
652
 <p>
664
 <p>
653
 Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
665
 Possibly the best way to synchronise files across all of your devices. Once it has been set up it "just works" with no user intervention needed.
654
 </p>
666
 </p>
658
 </p>
670
 </p>
659
 </div>
671
 </div>
660
 </div>
672
 </div>
661
-<div id="outline-container-orgba7f3d8" class="outline-2">
662
-<h2 id="orgba7f3d8">Tahoe-LAFS</h2>
663
-<div class="outline-text-2" id="text-orgba7f3d8">
673
+<div id="outline-container-org1f099ea" class="outline-2">
674
+<h2 id="org1f099ea">Tahoe-LAFS</h2>
675
+<div class="outline-text-2" id="text-org1f099ea">
664
 <p>
676
 <p>
665
 Robust and encrypted storage of files on one or more server.
677
 Robust and encrypted storage of files on one or more server.
666
 </p>
678
 </p>
670
 </p>
682
 </p>
671
 </div>
683
 </div>
672
 </div>
684
 </div>
673
-<div id="outline-container-org9a4f66a" class="outline-2">
674
-<h2 id="org9a4f66a">Tox</h2>
675
-<div class="outline-text-2" id="text-org9a4f66a">
685
+<div id="outline-container-org9b9d283" class="outline-2">
686
+<h2 id="org9b9d283">Tox</h2>
687
+<div class="outline-text-2" id="text-org9b9d283">
676
 <p>
688
 <p>
677
 Client and bootstrap node for the Tox chat/VoIP system.
689
 Client and bootstrap node for the Tox chat/VoIP system.
678
 </p>
690
 </p>
682
 </p>
694
 </p>
683
 </div>
695
 </div>
684
 </div>
696
 </div>
685
-<div id="outline-container-org94d43e3" class="outline-2">
686
-<h2 id="org94d43e3">Turtl</h2>
687
-<div class="outline-text-2" id="text-org94d43e3">
697
+<div id="outline-container-org85e51e9" class="outline-2">
698
+<h2 id="org85e51e9">Turtl</h2>
699
+<div class="outline-text-2" id="text-org85e51e9">
688
 <p>
700
 <p>
689
 A system for privately creating and sharing notes and images, similar to Evernote but without the spying.
701
 A system for privately creating and sharing notes and images, similar to Evernote but without the spying.
690
 </p>
702
 </p>
694
 </p>
706
 </p>
695
 </div>
707
 </div>
696
 </div>
708
 </div>
697
-<div id="outline-container-org46fcb91" class="outline-2">
698
-<h2 id="org46fcb91">Vim</h2>
699
-<div class="outline-text-2" id="text-org46fcb91">
709
+<div id="outline-container-orgb589515" class="outline-2">
710
+<h2 id="orgb589515">Vim</h2>
711
+<div class="outline-text-2" id="text-orgb589515">
700
 <p>
712
 <p>
701
 If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
713
 If you use the Mutt client to read your email then this will set it up to use vim for composing new mail.
702
 </p>
714
 </p>
703
 </div>
715
 </div>
704
 </div>
716
 </div>
705
 
717
 
706
-<div id="outline-container-org867a756" class="outline-2">
707
-<h2 id="org867a756">Virtual Private Network (VPN)</h2>
708
-<div class="outline-text-2" id="text-org867a756">
718
+<div id="outline-container-org5ba4463" class="outline-2">
719
+<h2 id="org5ba4463">Virtual Private Network (VPN)</h2>
720
+<div class="outline-text-2" id="text-org5ba4463">
709
 <p>
721
 <p>
710
 Set up a VPN on your server so that you can bypass local internet censorship.
722
 Set up a VPN on your server so that you can bypass local internet censorship.
711
 </p>
723
 </p>
715
 </p>
727
 </p>
716
 </div>
728
 </div>
717
 </div>
729
 </div>
718
-<div id="outline-container-orge4cd08a" class="outline-2">
719
-<h2 id="orge4cd08a">XMPP</h2>
720
-<div class="outline-text-2" id="text-orge4cd08a">
730
+<div id="outline-container-org4198c39" class="outline-2">
731
+<h2 id="org4198c39">XMPP</h2>
732
+<div class="outline-text-2" id="text-org4198c39">
721
 <p>
733
 <p>
722
 Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device.
734
 Chat server which can be used together with client such as Gajim or Conversations to provide end-to-end content security and also onion routed metadata security. Includes advanced features such as <i>client state notification</i> to save battery power on your mobile devices, support for seamless roaming between networks and <i>message carbons</i> so that you can receive the same messages while being simultaneously logged in to your account on more than one device.
723
 </p>
735
 </p>