This commit is contained in:
afornerot 2024-07-19 14:34:55 +02:00
parent 9a8685e252
commit 3823cd85a8
68 changed files with 2061 additions and 100 deletions

View File

@ -1,10 +1,16 @@
version: '3' version: '3'
services: services:
#== SERVICES OUTILS =======================================================================================================================
# Nineapache
# Reverse proxy de l'ensemble des services
# Seul port ouvert sur l'exterieur
nineapache: nineapache:
image: reg.cadoles.com/envole/nineapache:8.1 image: reg.cadoles.com/envole/nineapache:8.1
container_name: nine-nineapache container_name: nine-nineapache
restart: always restart: unless-stopped
healthcheck: healthcheck:
test: curl --fail http://localhost || exit 1 test: curl --fail http://localhost || exit 1
interval: 1s interval: 1s
@ -17,10 +23,13 @@ services:
volumes: volumes:
- ./volume/nineapache/nine/apache.conf:/etc/apache2/conf.d/zapp.conf - ./volume/nineapache/nine/apache.conf:/etc/apache2/conf.d/zapp.conf
# Mariadb
# Base de données des services
# Port interne 3306
mariadb: mariadb:
image: docker.io/library/mariadb image: docker.io/library/mariadb
container_name: nine-mariadb container_name: nine-mariadb
restart: always restart: unless-stopped
healthcheck: healthcheck:
test: /nine/check.sh test: /nine/check.sh
interval: 1s interval: 1s
@ -28,38 +37,40 @@ services:
env_file: ./tmp/.env.mariadb env_file: ./tmp/.env.mariadb
networks: networks:
- nine-network - nine-network
ports:
- "3306:3306"
volumes: volumes:
- ./volume/mariadb/mysql:/var/lib/mysql - ./volume/mariadb/mysql:/var/lib/mysql
- ./volume/mariadb/nine:/nine - ./volume/mariadb/nine:/nine
# Redis
# Base de données redis pour les services qui souhaitent stocker leur session en bdd
# Port interne 6379
redis: redis:
image: redis:4.0 image: redis:4.0
container_name: nine-redis container_name: nine-redis
ports:
- 6379:6379
environment: environment:
- TZ=Europe/Paris - TZ=Europe/Paris
# Minio
# Stocakge S3
# Port interne 9000 pour le stockage / Port interne 9001 pour l'interface web
minio: minio:
image: minio/minio image: minio/minio
container_name: nine-minio container_name: nine-minio
restart: always restart: unless-stopped
env_file: ./tmp/.env.minio env_file: ./tmp/.env.minio
networks: networks:
- nine-network - nine-network
ports:
- '7200:9000'
- '7201:9001'
volumes: volumes:
- './volume/minio/data:/data' - './volume/minio/data:/data'
command: server /data --console-address ":9001" command: server /data --console-address ":9001"
# Openldap
# Annuaire
# Port interne 1389 & 1636
openldap: openldap:
image: docker.io/bitnami/openldap:2 image: docker.io/bitnami/openldap:2
container_name: nine-openldap container_name: nine-openldap
restart: always restart: unless-stopped
healthcheck: healthcheck:
test: /nine/check.sh test: /nine/check.sh
interval: 1s interval: 1s
@ -67,24 +78,17 @@ services:
env_file: ./tmp/.env.openldap env_file: ./tmp/.env.openldap
networks: networks:
- nine-network - nine-network
ports:
- '1389:1389'
- '1636:1636'
#entrypoint: /nine/debug/debug.sh
#command: sleep 1d
volumes: volumes:
- './volume/openldap/data:/bitnami/openldap' - './volume/openldap/data:/bitnami/openldap'
- './volume/openldap/nine:/nine' - './volume/openldap/nine:/nine'
# Keycloak
# serveur SSO
# Port interne 8999 & 8443
keycloak: keycloak:
image: reg.cadoles.com/envole/keycloak:24.0.5 image: reg.cadoles.com/envole/keycloak:24.0.5
container_name: nine-keycloak container_name: nine-keycloak
restart: always restart: unless-stopped
#entrypoint: /bin/bash # Spécifiez le point d'entrée souhaité (dans cet exemple, /bin/bash)
#command:
#tty: true
#stdin_open: true
healthcheck: healthcheck:
test: curl --fail http://127.0.0.1:9990 || exit 1 test: curl --fail http://127.0.0.1:9990 || exit 1
interval: 1s interval: 1s
@ -101,27 +105,15 @@ services:
- start-dev - start-dev
- --import-realm - --import-realm
ninegate: #== SERVICES APPLICATIF =======================================================================================================================
image: reg.cadoles.com/envole/ninegate
container_name: nine-ninegate
restart: always
healthcheck:
test: curl --fail http://localhost/ninegate || exit 1
interval: 1s
timeout: 60s
env_file: ./tmp/.env.ninegate
networks:
- nine-network
ports:
- "9000:80"
volumes:
- ./volume/ninegate/data/private:/app/uploads
- ./volume/ninegate/data/public:/app/public/uploads
# Nextcloud
# Hébergement de fichiers et une plateforme de collaboration
# Port interne 80
nextcloud: nextcloud:
image: reg.cadoles.com/envole/nextcloud image: reg.cadoles.com/envole/nextcloud
container_name: nine-nextcloud container_name: nine-nextcloud
restart: always restart: unless-stopped
healthcheck: healthcheck:
test: curl --fail http://localhost || exit 1 test: curl --fail http://localhost || exit 1
interval: 1s interval: 1s
@ -129,8 +121,6 @@ services:
env_file: ./tmp/.env.nextcloud env_file: ./tmp/.env.nextcloud
networks: networks:
- nine-network - nine-network
ports:
- 9001:80
volumes: volumes:
- ./volume/nextcloud/html:/var/www/html - ./volume/nextcloud/html:/var/www/html
- ./volume/nextcloud/app:/var/www/html/custom_apps - ./volume/nextcloud/app:/var/www/html/custom_apps
@ -138,10 +128,13 @@ services:
- ./volume/nextcloud/nine:/nine - ./volume/nextcloud/nine:/nine
- ./volume/nextcloud/prestart:/docker-entrypoint-hooks.d/before-starting - ./volume/nextcloud/prestart:/docker-entrypoint-hooks.d/before-starting
# Nineboard
# Tableaux de bord collaboratif
# Port interne 80
nineboard: nineboard:
image: reg.cadoles.com/envole/nineboard image: reg.cadoles.com/envole/nineboard
container_name: nine-nineboard container_name: nine-nineboard
restart: always restart: unless-stopped
healthcheck: healthcheck:
test: curl --fail http://localhost/nineboard || exit 1 test: curl --fail http://localhost/nineboard || exit 1
interval: 1s interval: 1s
@ -149,16 +142,47 @@ services:
env_file: ./tmp/.env.nineboard env_file: ./tmp/.env.nineboard
networks: networks:
- nine-network - nine-network
ports:
- "9002:80"
volumes: volumes:
- ./volume/nineboard/data/private:/app/uploads - ./volume/nineboard/data/private:/app/uploads
- ./volume/nineboard/data/public:/app/public/uploads - ./volume/nineboard/data/public:/app/public/uploads
# Ninegate
# Portail collaboratif
# Port interne 80
ninegate:
image: reg.cadoles.com/envole/ninegate
container_name: nine-ninegate
restart: unless-stopped
healthcheck:
test: curl --fail http://localhost/ninegate || exit 1
interval: 1s
timeout: 60s
env_file: ./tmp/.env.ninegate
networks:
- nine-network
volumes:
- ./volume/ninegate/data/private:/app/uploads
- ./volume/ninegate/data/public:/app/public/uploads
# Wiki.js
# Wiki
# Port interne 3000
wiki:
image: linuxserver/dokuwiki
container_name: nine-wiki
env_file: ./tmp/.env.wiki
networks:
- nine-network
ports:
- 9000:80
# Wordpress
# Reseau de blog
# Port interne 80
wordpress: wordpress:
image: reg.cadoles.com/envole/wordpress image: reg.cadoles.com/envole/wordpress
container_name: nine-wordpress container_name: nine-wordpress
restart: always restart: unless-stopped
healthcheck: healthcheck:
test: curl --fail http://localhost/wordpress || exit 1 test: curl --fail http://localhost/wordpress || exit 1
interval: 1s interval: 1s
@ -168,31 +192,39 @@ services:
nine-network: nine-network:
aliases: aliases:
- blog - blog
ports:
- "9003:80"
volumes: volumes:
- ./volume/wordpress/data:/app/public/wp-content - ./volume/wordpress/data:/app/public/wp-content
#== SERVIVES DEVELOPPEUR ==================================================================================================================
# Adminer
# Gestionnaire BDD
# Port interne 8080
adminer: adminer:
image: docker.io/library/adminer image: docker.io/library/adminer
container_name: nine-adminer container_name: nine-adminer
restart: always restart: unless-stopped
env_file: ./tmp/.env.adminer env_file: ./tmp/.env.adminer
networks: networks:
- nine-network - nine-network
ports: ports:
- 9100:8080 - 9100:8080
# Phpldapadmin
# Gestionnaire Annuaire
# Port interne 80
phpldapadmin: phpldapadmin:
image: docker.io/osixia/phpldapadmin:latest image: docker.io/osixia/phpldapadmin:latest
container_name: nine-phpldapadmin container_name: nine-phpldapadmin
restart: always restart: unless-stopped
env_file: ./tmp/.env.phpldapadmin env_file: ./tmp/.env.phpldapadmin
networks: networks:
- nine-network - nine-network
ports: ports:
- "9101:80" - "9101:80"
#== NETWORKS ==============================================================================================================================
networks: networks:
nine-network: nine-network:
name: nine-network name: nine-network

30
env/.env vendored
View File

@ -18,6 +18,7 @@ PROTOCOLE=http
# ADMIN USER # ADMIN USER
ADMIN_USER=admin ADMIN_USER=admin
ADMIN_PASSWORD=changeme ADMIN_PASSWORD=changeme
ADMIN_EMAIL=admin@noreply.fr
# MASTERIDENTITY # MASTERIDENTITY
# SQL or SSO or (to do LDAP) # SQL or SSO or (to do LDAP)
@ -37,6 +38,8 @@ NINEAPACHE_LOCAL=1
MARIADB_SERVICE_NAME=mariadb MARIADB_SERVICE_NAME=mariadb
MARIADB_ACTIVATE=1 MARIADB_ACTIVATE=1
MARIADB_LOCAL=1 MARIADB_LOCAL=1
MARIADB_HOST=${MARIADB_SERVICE_NAME}
MARIADB_PORT=3306
MARIADB_ROOT_PASSWORD=${ADMIN_PASSWORD} MARIADB_ROOT_PASSWORD=${ADMIN_PASSWORD}
MARIADB_USER=user MARIADB_USER=user
MARIADB_PASSWORD=${ADMIN_PASSWORD} MARIADB_PASSWORD=${ADMIN_PASSWORD}
@ -100,11 +103,11 @@ CAS_PORT=8999
CAS_PATH=/auth/realms/nine/protocol/cas CAS_PATH=/auth/realms/nine/protocol/cas
CAS_URL=${PROTOCOLE}://${CAS_HOST}:${CAS_PORT} CAS_URL=${PROTOCOLE}://${CAS_HOST}:${CAS_PORT}
# NINEGATE # NINEBOARD
NINEGATE_SERVICE_NAME=ninegate NINEBOARD_SERVICE_NAME=nineboard
NINEGATE_ACTIVATE=1 NINEBOARD_ACTIVATE=1
NINEGATE_LOCAL=1 NINEBOARD_LOCAL=1
NINEGATE_URL=${PROTOCOLE}://${WEB_URL}/ninegate NINEBOARD_URL=${PROTOCOLE}://${WEB_URL}/nineboard
# NEXTCLOUD # NEXTCLOUD
NEXTCLOUD_SERVICE_NAME=nextcloud NEXTCLOUD_SERVICE_NAME=nextcloud
@ -113,11 +116,17 @@ NEXTCLOUD_LOCAL=1
NEXTCLOUD_URL=${PROTOCOLE}://${WEB_URL}/nextcloud NEXTCLOUD_URL=${PROTOCOLE}://${WEB_URL}/nextcloud
NEXTCLOUD_SAMBA=0 NEXTCLOUD_SAMBA=0
# NINEBOARD # NINEGATE
NINEBOARD_SERVICE_NAME=nineboard NINEGATE_SERVICE_NAME=ninegate
NINEBOARD_ACTIVATE=1 NINEGATE_ACTIVATE=1
NINEBOARD_LOCAL=1 NINEGATE_LOCAL=1
NINEBOARD_URL=${PROTOCOLE}://${WEB_URL}/nineboard NINEGATE_URL=${PROTOCOLE}://${WEB_URL}/ninegate
# WIKI
WIKI_SERVICE_NAME=wiki
WIKI_ACTIVATE=1
WIKI_LOCAL=1
WIKI_URL=${PROTOCOLE}://${WEB_URL}/wiki
# WORDPRESS # WORDPRESS
WORDPRESS_SERVICE_NAME=wordpress WORDPRESS_SERVICE_NAME=wordpress
@ -136,3 +145,4 @@ PHPLDAPADMIN_SERVICE_NAME=phpldapadmin
PHPLDAPADMIN_ACTIVATE=1 PHPLDAPADMIN_ACTIVATE=1
PHPLDAPADMIN_LOCAL=1 PHPLDAPADMIN_LOCAL=1
PHPLDAPADMIN_URL=${PROTOCOLE}://${WEB_URL}/phpldapadmin PHPLDAPADMIN_URL=${PROTOCOLE}://${WEB_URL}/phpldapadmin

View File

@ -5,7 +5,7 @@ KEYCLOAK_ADMIN=${CAS_USER}
KEYCLOAK_ADMIN_PASSWORD=${CAS_PASSWORD} KEYCLOAK_ADMIN_PASSWORD=${CAS_PASSWORD}
KC_DB=mariadb KC_DB=mariadb
KC_DB_URL=jdbc:mariadb://${MARIADB_SERVICE_NAME}:3306/keycloak KC_DB_URL=jdbc:mariadb://${MARIADB_HOST}:${MARIADB_PORT}/keycloak
KC_DB_USERNAME=${MARIADB_USER} KC_DB_USERNAME=${MARIADB_USER}
KC_DB_PASSWORD=${MARIADB_PASSWORD} KC_DB_PASSWORD=${MARIADB_PASSWORD}
@ -20,3 +20,4 @@ KC_PROXY_HEADERS=xforwarded
KC_HTTP_ENABLED=true KC_HTTP_ENABLED=true
KC_IMPORT=/nine/realm-export.json KC_IMPORT=/nine/realm-export.json

4
env/.env.zapp.minio vendored
View File

@ -1,3 +1,7 @@
# == MINIO ================================================================================================================================
MINIO_ROOT_USER=${ADMIN_USER} MINIO_ROOT_USER=${ADMIN_USER}
MINIO_ROOT_PASSWORD=${ADMIN_PASSWORD} MINIO_ROOT_PASSWORD=${ADMIN_PASSWORD}
MINIO_DEFAULT_BUCKETS=nine MINIO_DEFAULT_BUCKETS=nine

View File

@ -1,7 +1,7 @@
# == NEXTCLOUD ============================================================================================================================ # == NEXTCLOUD ============================================================================================================================
MYSQL_HOST=mariadb MYSQL_HOST=${MARIADB_HOST}
MYSQL_DATABASE=nextcloud MYSQL_DATABASE=nextcloud
MYSQL_USER=${MARIADB_USER} MYSQL_USER=${MARIADB_USER}
MYSQL_PASSWORD=${MARIADB_PASSWORD} MYSQL_PASSWORD=${MARIADB_PASSWORD}

View File

@ -3,3 +3,4 @@
APP_AUTH=${MODE_AUTH} APP_AUTH=${MODE_AUTH}
APP_ALIAS=nineboard APP_ALIAS=nineboard

View File

@ -21,3 +21,4 @@ ACTIVATE_WIDGENCONFIG=${GENCONFIG_ACTIVATE}
WIDGENCONFIG_URL=${GENCONFIG_URL} WIDGENCONFIG_URL=${GENCONFIG_URL}
INITPWDADMIN=${ADMIN_PASSWORD} INITPWDADMIN=${ADMIN_PASSWORD}

29
env/.env.zapp.wiki vendored Normal file
View File

@ -0,0 +1,29 @@
# == WIKI =================================================================================================================================
#DB_TYPE=mariadb
#DB_HOST=${MARIADB_HOST}
#DB_PORT=${MARIADB_PORT}
#DB_USER=${MARIADB_USER}
#DB_PASS=${MARIADB_PASSWORD}
#DB_NAME=wiki
#LOG_LEVEL=debug
#PUID=1000
#PGID=1000
#TZ=Europe/Paris
#APP_URL=${PROTOCOLE}://${WEB_URL}/${WIKI_SERVICE_NAME}
#DB_HOST=${MARIADB_HOST}
#DB_PORT=${MARIADB_PORT}
#DB_USER=${MARIADB_USER}
#DB_PASS=${MARIADB_PASSWORD}
#DB_DATABASE=${WIKI_SERVICE_NAME}
#APP_KEY=base64:5iSqRGawPnvl5VzRnEqV+K1ElTQ1nDt2bYayD8nh2F4=
#ADMIN_EMAIL=${ADMIN_EMAIL}
#ADMIN_PASSWORD=${ADMIN_PASSWORD}
PUID=1000
PGID=1000
TZ=Europe/Paris
DOKUWIKI_USERNAME=${ADMIN_USER}
DOKUWIKI_PASSWORD=${ADMIN_PASSWORD}

View File

@ -1,7 +1,7 @@
# == WORDPRESS ============================================================================================================================ # == WORDPRESS ============================================================================================================================
WORDPRESS_DB_HOST=mariadb WORDPRESS_DB_HOST=${MARIADB_HOST}
WORDPRESS_DB_NAME=wordpress WORDPRESS_DB_NAME=wordpress
WORDPRESS_DB_USER=${MARIADB_USER} WORDPRESS_DB_USER=${MARIADB_USER}
WORDPRESS_DB_PASSWORD=${MARIADB_PASSWORD} WORDPRESS_DB_PASSWORD=${MARIADB_PASSWORD}
@ -12,3 +12,4 @@ WORDPRESS_EMAIL=${ADMIN_USER}@noreply.fr
WORDPRESS_PROTOCOL=${PROTOCOLE} WORDPRESS_PROTOCOL=${PROTOCOLE}
WORDPRESS_DOMAINE=${WEB_URL} WORDPRESS_DOMAINE=${WEB_URL}
WORDPRESS_ALIAS=/wordpress/ WORDPRESS_ALIAS=/wordpress/

View File

@ -0,0 +1,18 @@
FROM reg.cadoles.com/envole/nineapache:8.1
COPY apache.conf /etc/apache2/conf.d/zapp.conf
RUN cd /app
RUN rm -rf public
RUN wget https://download.dokuwiki.org/src/dokuwiki/dokuwiki-stable.tgz
RUN tar zxvf dokuwiki-stable.tgz
RUN rm dokuwiki-stable.tgz
RUN mv dokuwiki-2024-02-06a public
RUN chown -R apache:apache public
RUN chmod -R 700 public/
RUN cd /app/public
# Installation de wp-cli
#COPY local.php /config/dokuwiki/conf/local.php

View File

@ -0,0 +1,19 @@
LoadModule rewrite_module modules/mod_rewrite.so
ServerName nineapache.local
DocumentRoot "/app/public"
Alias /dokuwiki /app/public
<Directory "/app/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
RewriteEngine On
RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$
RewriteRule .* - [E=BASE:%1]
RewriteCond %{HTTP:Authorization} .+
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0]
RewriteCond %{ENV:REDIRECT_STATUS} =""
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ %{ENV:BASE}/index.php [L]
</Directory>

View File

@ -0,0 +1,3 @@
<?php
echo "POUET";

View File

@ -0,0 +1 @@
/var/www/html/conf.core/license.php

View File

@ -0,0 +1,3 @@
<?php
echo "pouet";
var_dump($_ENV);

View File

@ -0,0 +1,8 @@
<?php
/*
* Local plugin enable/disable settings
* Auto-generated through plugin/extension manager
*
* NOTE: Plugins will not be added to this file unless there is a need to override a default setting. Plugins are
* enabled by default.
*/

View File

@ -0,0 +1,7 @@
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order allow,deny
Deny from all
</IfModule>

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
a:12:{i:0;a:3:{i:0;s:14:"document_start";i:1;a:0:{}i:2;i:0;}i:1;a:3:{i:0;s:6:"header";i:1;a:3:{i:0;s:29:"This topic does not exist yet";i:1;i:1;i:2;i:1;}i:2;i:1;}i:2;a:3:{i:0;s:12:"section_open";i:1;a:1:{i:0;i:1;}i:2;i:1;}i:3;a:3:{i:0;s:6:"p_open";i:1;a:0:{}i:2;i:1;}i:4;a:3:{i:0;s:5:"cdata";i:1;a:1:{i:0;s:113:"You've followed a link to a topic that doesn't exist yet. If permissions allow, you may create it by clicking on ";}i:2;i:46;}i:5;a:3:{i:0;s:11:"strong_open";i:1;a:0:{}i:2;i:159;}i:6;a:3:{i:0;s:5:"cdata";i:1;a:1:{i:0;s:16:"Create this page";}i:2;i:161;}i:7;a:3:{i:0;s:12:"strong_close";i:1;a:0:{}i:2;i:177;}i:8;a:3:{i:0;s:5:"cdata";i:1;a:1:{i:0;s:1:".";}i:2;i:179;}i:9;a:3:{i:0;s:7:"p_close";i:1;a:0:{}i:2;i:180;}i:10;a:3:{i:0;s:13:"section_close";i:1;a:0:{}i:2;i:181;}i:11;a:3:{i:0;s:12:"document_end";i:1;a:0:{}i:2;i:181;}}

View File

@ -0,0 +1,9 @@
<h1 class="sectionedit1" id="this_topic_does_not_exist_yet">This topic does not exist yet</h1>
<div class="level1">
<p>
You&#039;ve followed a link to a topic that doesn&#039;t exist yet. If permissions allow, you may create it by clicking on <strong>Create this page</strong>.
</p>
</div>

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1,988 @@
# This is a list of files that were present in previous DokuWiki releases
# but were removed later. An up to date DokuWiki should not have any of
# the files installed
# removed in 2022-06-26
.travis.yml
appveyor.yml
inc/IXR_Library.php
inc/cli.php
lib/images/interwiki/amazon.de.gif
lib/images/interwiki/amazon.gif
lib/images/interwiki/amazon.uk.gif
lib/images/interwiki/callto.gif
lib/images/interwiki/doku.gif
lib/images/interwiki/google.gif
lib/images/interwiki/paypal.gif
lib/images/interwiki/phpfn.gif
lib/images/interwiki/skype.gif
lib/images/interwiki/tel.gif
lib/images/interwiki/user.png
lib/images/interwiki/wp.gif
lib/images/interwiki/wpde.gif
lib/images/interwiki/wpes.gif
lib/images/interwiki/wpfr.gif
lib/images/interwiki/wpjp.gif
lib/images/interwiki/wpmeta.gif
lib/images/interwiki/wppl.gif
lib/images/smileys/delete.gif
lib/images/smileys/facepalm.gif
lib/images/smileys/fixme.gif
lib/images/smileys/icon_arrow.gif
lib/images/smileys/icon_biggrin.gif
lib/images/smileys/icon_confused.gif
lib/images/smileys/icon_cool.gif
lib/images/smileys/icon_cry.gif
lib/images/smileys/icon_doubt.gif
lib/images/smileys/icon_doubt2.gif
lib/images/smileys/icon_eek.gif
lib/images/smileys/icon_evil.gif
lib/images/smileys/icon_exclaim.gif
lib/images/smileys/icon_frown.gif
lib/images/smileys/icon_fun.gif
lib/images/smileys/icon_idea.gif
lib/images/smileys/icon_kaddi.gif
lib/images/smileys/icon_lol.gif
lib/images/smileys/icon_mrgreen.gif
lib/images/smileys/icon_neutral.gif
lib/images/smileys/icon_question.gif
lib/images/smileys/icon_razz.gif
lib/images/smileys/icon_redface.gif
lib/images/smileys/icon_rolleyes.gif
lib/images/smileys/icon_sad.gif
lib/images/smileys/icon_silenced.gif
lib/images/smileys/icon_smile.gif
lib/images/smileys/icon_smile2.gif
lib/images/smileys/icon_surprised.gif
lib/images/smileys/icon_twisted.gif
lib/images/smileys/icon_wink.gif
vendor/paragonie/random_compat/LICENSE
vendor/paragonie/random_compat/composer.json
vendor/paragonie/random_compat/lib/byte_safe_strings.php
vendor/paragonie/random_compat/lib/cast_to_int.php
vendor/paragonie/random_compat/lib/error_polyfill.php
vendor/paragonie/random_compat/lib/random.php
vendor/paragonie/random_compat/lib/random_bytes_com_dotnet.php
vendor/paragonie/random_compat/lib/random_bytes_dev_urandom.php
vendor/paragonie/random_compat/lib/random_bytes_libsodium.php
vendor/paragonie/random_compat/lib/random_bytes_libsodium_legacy.php
vendor/paragonie/random_compat/lib/random_bytes_mcrypt.php
vendor/paragonie/random_compat/lib/random_int.php
lib/images/smileys/icon_cool.gif
lib/images/smileys/icon_eek.gif
lib/images/smileys/icon_eek.gif
lib/images/smileys/icon_sad.gif
lib/images/smileys/icon_smile.gif
lib/images/smileys/icon_smile2.gif
lib/images/smileys/icon_doubt.gif
lib/images/smileys/icon_doubt2.gif
lib/images/smileys/icon_confused.gif
lib/images/smileys/icon_biggrin.gif
lib/images/smileys/icon_razz.gif
lib/images/smileys/icon_surprised.gif
lib/images/smileys/icon_surprised.gif
lib/images/smileys/icon_silenced.gif
lib/images/smileys/icon_silenced.gif
lib/images/smileys/icon_neutral.gif
lib/images/smileys/icon_wink.gif
lib/images/smileys/facepalm.gif
lib/images/smileys/icon_fun.gif
lib/images/smileys/icon_question.gif
lib/images/smileys/icon_exclaim.gif
lib/images/smileys/icon_lol.gif
lib/images/smileys/fixme.gif
lib/images/smileys/delete.gif
# removed in 2020-06-01
inc/PluginInterface.php
inc/PluginTrait.php
inc/HTTPClient.php
inc/PassHash.class.php
inc/remote.php
inc/RemoteAPICore.php
inc/Sitemapper.php
lib/plugins/config/_test/configuration.test.php
inc/Input.class.php
inc/JSON.php
inc/Plugin.php
inc/events.php
inc/lang/.htaccess
inc/lang/az/wordblock.txt
inc/lang/gl/wordblock.txt
inc/lang/ru/wordblock.txt
inc/parser/lexer.php
inc/plugincontroller.class.php
inc/subscription.php
lib/plugins/authmysql/auth.php
lib/plugins/authmysql/conf/default.php
lib/plugins/authmysql/conf/metadata.php
lib/plugins/authmysql/lang/bg/lang.php
lib/plugins/authmysql/lang/bg/settings.php
lib/plugins/authmysql/lang/cs/lang.php
lib/plugins/authmysql/lang/cs/settings.php
lib/plugins/authmysql/lang/cy/lang.php
lib/plugins/authmysql/lang/cy/settings.php
lib/plugins/authmysql/lang/da/lang.php
lib/plugins/authmysql/lang/da/settings.php
lib/plugins/authmysql/lang/de-informal/lang.php
lib/plugins/authmysql/lang/de-informal/settings.php
lib/plugins/authmysql/lang/de/lang.php
lib/plugins/authmysql/lang/de/settings.php
lib/plugins/authmysql/lang/en/lang.php
lib/plugins/authmysql/lang/en/settings.php
lib/plugins/authmysql/lang/eo/lang.php
lib/plugins/authmysql/lang/eo/settings.php
lib/plugins/authmysql/lang/es/lang.php
lib/plugins/authmysql/lang/es/settings.php
lib/plugins/authmysql/lang/eu/lang.php
lib/plugins/authmysql/lang/eu/settings.php
lib/plugins/authmysql/lang/fa/lang.php
lib/plugins/authmysql/lang/fa/settings.php
lib/plugins/authmysql/lang/fi/settings.php
lib/plugins/authmysql/lang/fr/lang.php
lib/plugins/authmysql/lang/fr/settings.php
lib/plugins/authmysql/lang/he/settings.php
lib/plugins/authmysql/lang/hr/lang.php
lib/plugins/authmysql/lang/hr/settings.php
lib/plugins/authmysql/lang/hu/lang.php
lib/plugins/authmysql/lang/hu/settings.php
lib/plugins/authmysql/lang/it/lang.php
lib/plugins/authmysql/lang/it/settings.php
lib/plugins/authmysql/lang/ja/lang.php
lib/plugins/authmysql/lang/ja/settings.php
lib/plugins/authmysql/lang/ko/lang.php
lib/plugins/authmysql/lang/ko/settings.php
lib/plugins/authmysql/lang/lv/settings.php
lib/plugins/authmysql/lang/nl/lang.php
lib/plugins/authmysql/lang/nl/settings.php
lib/plugins/authmysql/lang/no/lang.php
lib/plugins/authmysql/lang/no/settings.php
lib/plugins/authmysql/lang/pl/lang.php
lib/plugins/authmysql/lang/pl/settings.php
lib/plugins/authmysql/lang/pt-br/lang.php
lib/plugins/authmysql/lang/pt-br/settings.php
lib/plugins/authmysql/lang/pt/lang.php
lib/plugins/authmysql/lang/pt/settings.php
lib/plugins/authmysql/lang/ru/lang.php
lib/plugins/authmysql/lang/ru/settings.php
lib/plugins/authmysql/lang/sk/lang.php
lib/plugins/authmysql/lang/sk/settings.php
lib/plugins/authmysql/lang/sl/settings.php
lib/plugins/authmysql/lang/sr/lang.php
lib/plugins/authmysql/lang/sr/settings.php
lib/plugins/authmysql/lang/sv/lang.php
lib/plugins/authmysql/lang/sv/settings.php
lib/plugins/authmysql/lang/tr/lang.php
lib/plugins/authmysql/lang/tr/settings.php
lib/plugins/authmysql/lang/uk/lang.php
lib/plugins/authmysql/lang/zh-tw/settings.php
lib/plugins/authmysql/lang/zh/lang.php
lib/plugins/authmysql/lang/zh/settings.php
lib/plugins/authmysql/plugin.info.txt
lib/plugins/authpgsql/auth.php
lib/plugins/authpgsql/conf/default.php
lib/plugins/authpgsql/conf/metadata.php
lib/plugins/authpgsql/lang/bg/settings.php
lib/plugins/authpgsql/lang/cs/settings.php
lib/plugins/authpgsql/lang/cy/settings.php
lib/plugins/authpgsql/lang/da/settings.php
lib/plugins/authpgsql/lang/de-informal/settings.php
lib/plugins/authpgsql/lang/de/settings.php
lib/plugins/authpgsql/lang/en/settings.php
lib/plugins/authpgsql/lang/eo/settings.php
lib/plugins/authpgsql/lang/es/settings.php
lib/plugins/authpgsql/lang/fa/settings.php
lib/plugins/authpgsql/lang/fr/settings.php
lib/plugins/authpgsql/lang/hr/settings.php
lib/plugins/authpgsql/lang/hu/settings.php
lib/plugins/authpgsql/lang/it/settings.php
lib/plugins/authpgsql/lang/ja/settings.php
lib/plugins/authpgsql/lang/ko/settings.php
lib/plugins/authpgsql/lang/lv/settings.php
lib/plugins/authpgsql/lang/nl/settings.php
lib/plugins/authpgsql/lang/no/settings.php
lib/plugins/authpgsql/lang/pl/settings.php
lib/plugins/authpgsql/lang/pt-br/settings.php
lib/plugins/authpgsql/lang/pt/settings.php
lib/plugins/authpgsql/lang/ru/settings.php
lib/plugins/authpgsql/lang/sk/settings.php
lib/plugins/authpgsql/lang/sl/settings.php
lib/plugins/authpgsql/lang/sr/settings.php
lib/plugins/authpgsql/lang/sv/settings.php
lib/plugins/authpgsql/lang/tr/settings.php
lib/plugins/authpgsql/lang/uk/settings.php
lib/plugins/authpgsql/lang/zh-tw/settings.php
lib/plugins/authpgsql/lang/zh/settings.php
lib/plugins/authpgsql/plugin.info.txt
lib/plugins/config/settings/config.class.php
lib/plugins/config/settings/extra.class.php
lib/plugins/styling/iris.js
lib/scripts/jquery/jquery-migrate.min.js
vendor/paragonie/random_compat/psalm-autoload.php
vendor/paragonie/random_compat/psalm.xml
# removed in 2018-04-22
data/security.png
data/security.xcf
inc/EmailAddressValidator.php
inc/blowfish.php
inc/feedcreator.class.php
inc/lessc.inc.php
inc/plugin.php
lib/images/loading.gif
lib/tpl/dokuwiki/css/_search.css
vendor/easybook/geshi
vendor/phpseclib/phpseclib/composer.lock
# remove in 2017-02-19
inc/SimplePie.php
inc/Tar.class.php
inc/ZipLib.class.php
inc/phpseclib/Crypt_AES.php
inc/phpseclib/Crypt_Rijndael.php
inc/phpseclib/update.sh
inc/phpseclib/LICENSE
inc/phpseclib/Crypt_Base.php
inc/phpseclib/Crypt_Hash.php
inc/phpseclib/Math_BigInteger.php
lib/scripts/jquery/jquery-migrate.js
lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_0_aaaaaa_40x100.png
lib/scripts/jquery/jquery-ui-theme/images/ui-bg_flat_75_ffffff_40x100.png
lib/scripts/jquery/jquery-ui.js
lib/scripts/jquery/jquery.js
lib/tpl/dokuwiki/css/_admin.css
# removed in 2016-06-26
inc/cliopts.php
lib/tpl/dokuwiki/css/mixins.less
# removed in 2015-08-10
inc/TarLib.class.php
inc/geshi.php
inc/geshi/4cs.php
inc/geshi/6502acme.php
inc/geshi/6502kickass.php
inc/geshi/6502tasm.php
inc/geshi/68000devpac.php
inc/geshi/abap.php
inc/geshi/actionscript-french.php
inc/geshi/actionscript.php
inc/geshi/actionscript3.php
inc/geshi/ada.php
inc/geshi/algol68.php
inc/geshi/apache.php
inc/geshi/applescript.php
inc/geshi/apt_sources.php
inc/geshi/arm.php
inc/geshi/asm.php
inc/geshi/asp.php
inc/geshi/asymptote.php
inc/geshi/autoconf.php
inc/geshi/autohotkey.php
inc/geshi/autoit.php
inc/geshi/avisynth.php
inc/geshi/awk.php
inc/geshi/bascomavr.php
inc/geshi/bash.php
inc/geshi/basic4gl.php
inc/geshi/bf.php
inc/geshi/bibtex.php
inc/geshi/blitzbasic.php
inc/geshi/bnf.php
inc/geshi/boo.php
inc/geshi/c.php
inc/geshi/c_loadrunner.php
inc/geshi/c_mac.php
inc/geshi/caddcl.php
inc/geshi/cadlisp.php
inc/geshi/cfdg.php
inc/geshi/cfm.php
inc/geshi/chaiscript.php
inc/geshi/cil.php
inc/geshi/clojure.php
inc/geshi/cmake.php
inc/geshi/cobol.php
inc/geshi/coffeescript.php
inc/geshi/cpp-qt.php
inc/geshi/cpp.php
inc/geshi/csharp.php
inc/geshi/css.php
inc/geshi/cuesheet.php
inc/geshi/d.php
inc/geshi/dcl.php
inc/geshi/dcpu16.php
inc/geshi/dcs.php
inc/geshi/delphi.php
inc/geshi/diff.php
inc/geshi/div.php
inc/geshi/dos.php
inc/geshi/dot.php
inc/geshi/e.php
inc/geshi/ecmascript.php
inc/geshi/eiffel.php
inc/geshi/email.php
inc/geshi/epc.php
inc/geshi/erlang.php
inc/geshi/euphoria.php
inc/geshi/f1.php
inc/geshi/falcon.php
inc/geshi/fo.php
inc/geshi/fortran.php
inc/geshi/freebasic.php
inc/geshi/freeswitch.php
inc/geshi/fsharp.php
inc/geshi/gambas.php
inc/geshi/gdb.php
inc/geshi/genero.php
inc/geshi/genie.php
inc/geshi/gettext.php
inc/geshi/glsl.php
inc/geshi/gml.php
inc/geshi/gnuplot.php
inc/geshi/go.php
inc/geshi/groovy.php
inc/geshi/gwbasic.php
inc/geshi/haskell.php
inc/geshi/haxe.php
inc/geshi/hicest.php
inc/geshi/hq9plus.php
inc/geshi/html4strict.php
inc/geshi/html5.php
inc/geshi/icon.php
inc/geshi/idl.php
inc/geshi/ini.php
inc/geshi/inno.php
inc/geshi/intercal.php
inc/geshi/io.php
inc/geshi/j.php
inc/geshi/java.php
inc/geshi/java5.php
inc/geshi/javascript.php
inc/geshi/jquery.php
inc/geshi/kixtart.php
inc/geshi/klonec.php
inc/geshi/klonecpp.php
inc/geshi/latex.php
inc/geshi/lb.php
inc/geshi/ldif.php
inc/geshi/lisp.php
inc/geshi/llvm.php
inc/geshi/locobasic.php
inc/geshi/logtalk.php
inc/geshi/lolcode.php
inc/geshi/lotusformulas.php
inc/geshi/lotusscript.php
inc/geshi/lscript.php
inc/geshi/lsl2.php
inc/geshi/lua.php
inc/geshi/m68k.php
inc/geshi/magiksf.php
inc/geshi/make.php
inc/geshi/mapbasic.php
inc/geshi/matlab.php
inc/geshi/mirc.php
inc/geshi/mmix.php
inc/geshi/modula2.php
inc/geshi/modula3.php
inc/geshi/mpasm.php
inc/geshi/mxml.php
inc/geshi/mysql.php
inc/geshi/nagios.php
inc/geshi/netrexx.php
inc/geshi/newlisp.php
inc/geshi/nsis.php
inc/geshi/oberon2.php
inc/geshi/objc.php
inc/geshi/objeck.php
inc/geshi/ocaml-brief.php
inc/geshi/ocaml.php
inc/geshi/octave.php
inc/geshi/oobas.php
inc/geshi/oorexx.php
inc/geshi/oracle11.php
inc/geshi/oracle8.php
inc/geshi/oxygene.php
inc/geshi/oz.php
inc/geshi/parasail.php
inc/geshi/parigp.php
inc/geshi/pascal.php
inc/geshi/pcre.php
inc/geshi/per.php
inc/geshi/perl.php
inc/geshi/perl6.php
inc/geshi/pf.php
inc/geshi/php-brief.php
inc/geshi/php.php
inc/geshi/pic16.php
inc/geshi/pike.php
inc/geshi/pixelbender.php
inc/geshi/pli.php
inc/geshi/plsql.php
inc/geshi/postgresql.php
inc/geshi/povray.php
inc/geshi/powerbuilder.php
inc/geshi/powershell.php
inc/geshi/proftpd.php
inc/geshi/progress.php
inc/geshi/prolog.php
inc/geshi/properties.php
inc/geshi/providex.php
inc/geshi/purebasic.php
inc/geshi/pycon.php
inc/geshi/pys60.php
inc/geshi/python.php
inc/geshi/q.php
inc/geshi/qbasic.php
inc/geshi/rails.php
inc/geshi/rebol.php
inc/geshi/reg.php
inc/geshi/rexx.php
inc/geshi/robots.php
inc/geshi/rpmspec.php
inc/geshi/rsplus.php
inc/geshi/ruby.php
inc/geshi/sas.php
inc/geshi/scala.php
inc/geshi/scheme.php
inc/geshi/scilab.php
inc/geshi/sdlbasic.php
inc/geshi/smalltalk.php
inc/geshi/smarty.php
inc/geshi/spark.php
inc/geshi/sparql.php
inc/geshi/sql.php
inc/geshi/stonescript.php
inc/geshi/systemverilog.php
inc/geshi/tcl.php
inc/geshi/teraterm.php
inc/geshi/text.php
inc/geshi/thinbasic.php
inc/geshi/tsql.php
inc/geshi/typoscript.php
inc/geshi/unicon.php
inc/geshi/upc.php
inc/geshi/urbi.php
inc/geshi/uscript.php
inc/geshi/vala.php
inc/geshi/vb.php
inc/geshi/vbnet.php
inc/geshi/vedit.php
inc/geshi/verilog.php
inc/geshi/vhdl.php
inc/geshi/vim.php
inc/geshi/visualfoxpro.php
inc/geshi/visualprolog.php
inc/geshi/whitespace.php
inc/geshi/whois.php
inc/geshi/winbatch.php
inc/geshi/xbasic.php
inc/geshi/xml.php
inc/geshi/xorg_conf.php
inc/geshi/xpp.php
inc/geshi/yaml.php
inc/geshi/z80.php
inc/geshi/zxbasic.php
lib/images/interwiki/coral.gif
lib/images/interwiki/dokubug.gif
lib/images/interwiki/sb.gif
lib/scripts/drag.js
lib/scripts/jquery/jquery-ui-theme/images/animated-overlay.gif
lib/scripts/tw-sack.js
# removed in 2014-05-05
lib/images/fileicons/audio.png
lib/plugins/plugin/admin.php
lib/plugins/plugin/classes/ap_delete.class.php
lib/plugins/plugin/classes/ap_download.class.php
lib/plugins/plugin/classes/ap_enable.class.php
lib/plugins/plugin/classes/ap_info.class.php
lib/plugins/plugin/classes/ap_manage.class.php
lib/plugins/plugin/classes/ap_update.class.php
lib/plugins/plugin/lang/af/lang.php
lib/plugins/plugin/lang/ar/admin_plugin.txt
lib/plugins/plugin/lang/ar/lang.php
lib/plugins/plugin/lang/bg/admin_plugin.txt
lib/plugins/plugin/lang/bg/lang.php
lib/plugins/plugin/lang/ca-valencia/admin_plugin.txt
lib/plugins/plugin/lang/ca-valencia/lang.php
lib/plugins/plugin/lang/ca/admin_plugin.txt
lib/plugins/plugin/lang/ca/lang.php
lib/plugins/plugin/lang/cs/admin_plugin.txt
lib/plugins/plugin/lang/cs/lang.php
lib/plugins/plugin/lang/da/admin_plugin.txt
lib/plugins/plugin/lang/da/lang.php
lib/plugins/plugin/lang/de-informal/admin_plugin.txt
lib/plugins/plugin/lang/de-informal/lang.php
lib/plugins/plugin/lang/de/admin_plugin.txt
lib/plugins/plugin/lang/de/lang.php
lib/plugins/plugin/lang/el/admin_plugin.txt
lib/plugins/plugin/lang/el/lang.php
lib/plugins/plugin/lang/en/admin_plugin.txt
lib/plugins/plugin/lang/en/lang.php
lib/plugins/plugin/lang/eo/admin_plugin.txt
lib/plugins/plugin/lang/eo/lang.php
lib/plugins/plugin/lang/es/admin_plugin.txt
lib/plugins/plugin/lang/es/lang.php
lib/plugins/plugin/lang/et/lang.php
lib/plugins/plugin/lang/eu/admin_plugin.txt
lib/plugins/plugin/lang/eu/lang.php
lib/plugins/plugin/lang/fa/admin_plugin.txt
lib/plugins/plugin/lang/fa/lang.php
lib/plugins/plugin/lang/fi/admin_plugin.txt
lib/plugins/plugin/lang/fi/lang.php
lib/plugins/plugin/lang/fr/admin_plugin.txt
lib/plugins/plugin/lang/fr/lang.php
lib/plugins/plugin/lang/gl/admin_plugin.txt
lib/plugins/plugin/lang/gl/lang.php
lib/plugins/plugin/lang/he/admin_plugin.txt
lib/plugins/plugin/lang/he/lang.php
lib/plugins/plugin/lang/hi/lang.php
lib/plugins/plugin/lang/hr/lang.php
lib/plugins/plugin/lang/hu/admin_plugin.txt
lib/plugins/plugin/lang/hu/lang.php
lib/plugins/plugin/lang/ia/admin_plugin.txt
lib/plugins/plugin/lang/ia/lang.php
lib/plugins/plugin/lang/id-ni/lang.php
lib/plugins/plugin/lang/id/lang.php
lib/plugins/plugin/lang/is/lang.php
lib/plugins/plugin/lang/it/admin_plugin.txt
lib/plugins/plugin/lang/it/lang.php
lib/plugins/plugin/lang/ja/admin_plugin.txt
lib/plugins/plugin/lang/ja/lang.php
lib/plugins/plugin/lang/kk/lang.php
lib/plugins/plugin/lang/ko/admin_plugin.txt
lib/plugins/plugin/lang/ko/lang.php
lib/plugins/plugin/lang/la/admin_plugin.txt
lib/plugins/plugin/lang/la/lang.php
lib/plugins/plugin/lang/lb/admin_plugin.txt
lib/plugins/plugin/lang/lb/lang.php
lib/plugins/plugin/lang/lt/admin_plugin.txt
lib/plugins/plugin/lang/lt/lang.php
lib/plugins/plugin/lang/lv/admin_plugin.txt
lib/plugins/plugin/lang/lv/lang.php
lib/plugins/plugin/lang/mk/lang.php
lib/plugins/plugin/lang/mr/admin_plugin.txt
lib/plugins/plugin/lang/mr/lang.php
lib/plugins/plugin/lang/ms/lang.php
lib/plugins/plugin/lang/ne/lang.php
lib/plugins/plugin/lang/nl/admin_plugin.txt
lib/plugins/plugin/lang/nl/lang.php
lib/plugins/plugin/lang/no/admin_plugin.txt
lib/plugins/plugin/lang/no/lang.php
lib/plugins/plugin/lang/pl/admin_plugin.txt
lib/plugins/plugin/lang/pl/lang.php
lib/plugins/plugin/lang/pt-br/admin_plugin.txt
lib/plugins/plugin/lang/pt-br/lang.php
lib/plugins/plugin/lang/pt/admin_plugin.txt
lib/plugins/plugin/lang/pt/lang.php
lib/plugins/plugin/lang/ro/admin_plugin.txt
lib/plugins/plugin/lang/ro/lang.php
lib/plugins/plugin/lang/ru/admin_plugin.txt
lib/plugins/plugin/lang/ru/lang.php
lib/plugins/plugin/lang/sk/admin_plugin.txt
lib/plugins/plugin/lang/sk/lang.php
lib/plugins/plugin/lang/sl/admin_plugin.txt
lib/plugins/plugin/lang/sl/lang.php
lib/plugins/plugin/lang/sq/admin_plugin.txt
lib/plugins/plugin/lang/sq/lang.php
lib/plugins/plugin/lang/sr/admin_plugin.txt
lib/plugins/plugin/lang/sr/lang.php
lib/plugins/plugin/lang/sv/admin_plugin.txt
lib/plugins/plugin/lang/sv/lang.php
lib/plugins/plugin/lang/th/admin_plugin.txt
lib/plugins/plugin/lang/th/lang.php
lib/plugins/plugin/lang/tr/admin_plugin.txt
lib/plugins/plugin/lang/tr/lang.php
lib/plugins/plugin/lang/uk/admin_plugin.txt
lib/plugins/plugin/lang/uk/lang.php
lib/plugins/plugin/lang/vi/lang.php
lib/plugins/plugin/lang/zh-tw/admin_plugin.txt
lib/plugins/plugin/lang/zh-tw/lang.php
lib/plugins/plugin/lang/zh/admin_plugin.txt
lib/plugins/plugin/lang/zh/lang.php
lib/plugins/plugin/plugin.info.txt
lib/plugins/plugin/style.css
# removed in 2013-11-18
lib/images/arrow_down.gif
lib/images/arrow_up.gif
lib/images/at.gif
lib/images/close.png
lib/images/del.png
lib/images/edit.gif
lib/images/list-minus.gif
lib/images/list-plus.gif
lib/images/pencil.png
# removed in 2013-10-28
lib/images/interwiki/meatball.gif
lib/images/interwiki/wiki.gif
lib/plugins/acl/ajax.php
lib/tpl/default/_admin.css
lib/tpl/default/_fileuploader.css
lib/tpl/default/_linkwiz.css
lib/tpl/default/_mediamanager.css
lib/tpl/default/_mediaoptions.css
lib/tpl/default/_subscription.css
lib/tpl/default/_tabs.css
lib/tpl/default/design.css
lib/tpl/default/detail.php
lib/tpl/default/footer.html
lib/tpl/default/images/UWEB.png
lib/tpl/default/images/UWEBshadow.png
lib/tpl/default/images/apple-touch-icon.png
lib/tpl/default/images/bullet.gif
lib/tpl/default/images/button-cc.gif
lib/tpl/default/images/button-css.png
lib/tpl/default/images/button-donate.gif
lib/tpl/default/images/button-dw.png
lib/tpl/default/images/button-php.gif
lib/tpl/default/images/button-rss.png
lib/tpl/default/images/button-xhtml.png
lib/tpl/default/images/buttonshadow.png
lib/tpl/default/images/closed.gif
lib/tpl/default/images/favicon.ico
lib/tpl/default/images/inputshadow.png
lib/tpl/default/images/link_icon.gif
lib/tpl/default/images/mail_icon.gif
lib/tpl/default/images/open.gif
lib/tpl/default/images/resizecol.png
lib/tpl/default/images/tocdot2.gif
lib/tpl/default/images/windows.gif
lib/tpl/default/layout.css
lib/tpl/default/main.php
lib/tpl/default/media.css
lib/tpl/default/mediamanager.php
lib/tpl/default/print.css
lib/tpl/default/rtl.css
lib/tpl/default/style.ini
lib/tpl/default/template.info.txt
lib/tpl/dokuwiki/css/basic.css
lib/tpl/dokuwiki/css/content.css
lib/tpl/dokuwiki/css/design.css
lib/tpl/dokuwiki/css/includes.css
lib/tpl/dokuwiki/css/mobile.css
lib/tpl/dokuwiki/css/pagetools.css
lib/tpl/dokuwiki/css/structure.css
# removed in 2013-05-10
lib/plugins/info/lang/sl/lang.php
# removed in 2013-04-06
inc/adLDAP.php
inc/auth/ad.class.php
inc/auth/basic.class.php
inc/auth/ldap.class.php
inc/auth/mysql.class.php
inc/auth/pgsql.class.php
inc/auth/plain.class.php
# removed in 2012-09-10
lib/images/icon-file.png
lib/images/icon-thumb.png
lib/images/interwiki/skype.png
lib/plugins/acl/rtl.css
lib/plugins/config/rtl.css
lib/plugins/plugin/rtl.css
# removed in 2011-11-10
lib/_fla/.htaccess
lib/_fla/MultipleUpload.as
lib/_fla/README
lib/_fla/index.html
lib/_fla/multipleUpload.fla
lib/exe/multipleUpload.swf
lib/images/multiupload.png
lib/scripts/ajax.js
lib/scripts/events.js
lib/scripts/subscriptions.js
# removed in 2011-05-25
conf/words.aspell.dist
lib/styles/style.css
# removed in 2010-11-07
inc/lang/ar/subscribermail.txt
inc/lang/az/subscribermail.txt
inc/lang/bg/subscribermail.txt
inc/lang/ca/subscribermail.txt
inc/lang/ca-valencia/subscribermail.txt
inc/lang/cs/subscribermail.txt
inc/lang/da/subscribermail.txt
inc/lang/de-informal/subscribermail.txt
inc/lang/el/subscribermail.txt
inc/lang/eo/subscribermail.txt
inc/lang/es/subscribermail.txt
inc/lang/et/subscribermail.txt
inc/lang/eu/subscribermail.txt
inc/lang/fa/subscribermail.txt
inc/lang/fi/subscribermail.txt
inc/lang/fo/subscribermail.txt
inc/lang/fr/subscribermail.txt
inc/lang/gl/subscribermail.txt
inc/lang/he/subscribermail.txt
inc/lang/hr/subscribermail.txt
inc/lang/hu/subscribermail.txt
inc/lang/id/subscribermail.txt
inc/lang/is/subscribermail.txt
inc/lang/it/subscribermail.txt
inc/lang/ja/subscribermail.txt
inc/lang/ko/subscribermail.txt
inc/lang/ku/subscribermail.txt
inc/lang/lt/subscribermail.txt
inc/lang/lv/subscribermail.txt
inc/lang/mr/subscribermail.txt
inc/lang/ne/subscribermail.txt
inc/lang/nl/subscribermail.txt
inc/lang/no/subscribermail.txt
inc/lang/pl/subscribermail.txt
inc/lang/pt-br/subscribermail.txt
inc/lang/pt/subscribermail.txt
inc/lang/ro/subscribermail.txt
inc/lang/ru/subscribermail.txt
inc/lang/sk/subscribermail.txt
inc/lang/sr/subscribermail.txt
inc/lang/sv/subscribermail.txt
inc/lang/th/subscribermail.txt
inc/lang/tr/subscribermail.txt
inc/lang/uk/subscribermail.txt
inc/lang/zh/subscribermail.txt
inc/lang/zh-tw/subscribermail.txt
# removed in rc2010-10-07
conf/msg
inc/lang/bg/wordblock.txt
inc/lang/ca-valencia/wordblock.txt
inc/lang/ca/wordblock.txt
inc/lang/cs/wordblock.txt
inc/lang/da/wordblock.txt
inc/lang/de-informal/wordblock.txt
inc/lang/de/subscribermail.txt
inc/lang/de/wordblock.txt
inc/lang/el/wordblock.txt
inc/lang/en/subscribermail.txt
inc/lang/en/wordblock.txt
inc/lang/eo/wordblock.txt
inc/lang/es/wordblock.txt
inc/lang/et/wordblock.txt
inc/lang/eu/wordblock.txt
inc/lang/fa/wordblock.txt
inc/lang/fi/wordblock.txt
inc/lang/fo/wordblock.txt
inc/lang/fr/wordblock.txt
inc/lang/he/wordblock.txt
inc/lang/hr/wordblock.txt
inc/lang/hu/wordblock.txt
inc/lang/id/wordblock.txt
inc/lang/it/wordblock.txt
inc/lang/ja/wordblock.txt
inc/lang/ko/wordblock.txt
inc/lang/ku/wordblock.txt
inc/lang/lt/wordblock.txt
inc/lang/lv/wordblock.txt
inc/lang/mg/wordblock.txt
inc/lang/mr/wordblock.txt
inc/lang/nl/wordblock.txt
inc/lang/no/wordblock.txt
inc/lang/pl/wordblock.txt
inc/lang/pt-br/wordblock.txt
inc/lang/pt/wordblock.txt
inc/lang/ro/wordblock.txt
inc/lang/sk/wordblock.txt
inc/lang/sl/wordblock.txt
inc/lang/sr/wordblock.txt
inc/lang/sv/wordblock.txt
inc/lang/th/wordblock.txt
inc/lang/tr/wordblock.txt
inc/lang/uk/wordblock.txt
inc/lang/vi/wordblock.txt
inc/lang/zh-tw/wordblock.txt
inc/lang/zh/wordblock.txt
lib/scripts/pngbehavior.htc
# removed in rc2009-12-02
inc/lang/ar/wordblock.txt
inc/lang/ca-va/
lib/plugins/acl/lang/ca-va/
lib/plugins/config/lang/ca-va/
lib/plugins/plugin/lang/ca-va/
lib/plugins/popularity/lang/ca-va/
lib/plugins/revert/lang/ca-va/
lib/plugins/usermanager/lang/ca-va/
# removed in rc2009-01-30
lib/plugins/upgradeplugindirectory
lib/plugins/upgradeplugindirectory/action.php
# removed in rc2009-01-26
inc/auth/punbb.class.php
inc/lang/ko/edit.txt_bak
inc/lang/ko/lang.php_bak
inc/lang/ku/admin_acl.txt
inc/lang/mg/admin_acl.txt
lib/plugins/importoldchangelog
lib/plugins/importoldchangelog/action.php
lib/plugins/importoldindex
lib/plugins/importoldindex/action.php
lib/plugins/usermanager/images/no_user_edit.png
lib/plugins/usermanager/images/user_edit.png
lib/tpl/default/UWEB.css
# removed in rc2008-03-31
inc/aspell.php
inc/geshi/css-gen.cfg
inc/lang/fr/admin_acl.txt
lib/exe/spellcheck.php
lib/images/toolbar/spellcheck.png
lib/images/toolbar/spellnoerr.png
lib/images/toolbar/spellstop.png
lib/images/toolbar/spellwait.gif
lib/plugins/acl/lang/ar/intro.txt
lib/plugins/acl/lang/bg/intro.txt
lib/plugins/acl/lang/ca/intro.txt
lib/plugins/acl/lang/cs/intro.txt
lib/plugins/acl/lang/da/intro.txt
lib/plugins/acl/lang/de/intro.txt
lib/plugins/acl/lang/el/intro.txt
lib/plugins/acl/lang/en/intro.txt
lib/plugins/acl/lang/es/intro.txt
lib/plugins/acl/lang/et/intro.txt
lib/plugins/acl/lang/eu/intro.txt
lib/plugins/acl/lang/fi/intro.txt
lib/plugins/acl/lang/fr/intro.txt
lib/plugins/acl/lang/gl/intro.txt
lib/plugins/acl/lang/he/intro.txt
lib/plugins/acl/lang/id/intro.txt
lib/plugins/acl/lang/it/intro.txt
lib/plugins/acl/lang/ja/intro.txt
lib/plugins/acl/lang/ko/intro.txt
lib/plugins/acl/lang/lt/intro.txt
lib/plugins/acl/lang/lv/intro.txt
lib/plugins/acl/lang/nl/intro.txt
lib/plugins/acl/lang/no/intro.txt
lib/plugins/acl/lang/pl/intro.txt
lib/plugins/acl/lang/pt/intro.txt
lib/plugins/acl/lang/ru/intro.txt
lib/plugins/acl/lang/sk/intro.txt
lib/plugins/acl/lang/sr/intro.txt
lib/plugins/acl/lang/sv/intro.txt
lib/plugins/acl/lang/tr/intro.txt
lib/plugins/acl/lang/uk/intro.txt
lib/plugins/acl/lang/vi/intro.txt
lib/plugins/acl/lang/zh/intro.txt
lib/plugins/acl/lang/zh-tw/intro.txt
lib/scripts/spellcheck.js
lib/styles/spellcheck.css
# removed in 2007-06-26
inc/parser/wiki.php
lib/images/interwiki/bug.gif
lib/plugins/base.php
lib/plugins/plugin/inc
lib/plugins/plugin/inc/tarlib.class.php
lib/plugins/plugin/inc/zip.lib.php
lib/scripts/domLib.js
lib/scripts/domTT.js
# removed in 2006-11-06
inc/admin_acl.php
inc/magpie
inc/magpie/rss_cache.inc
inc/magpie/rss_fetch.inc
inc/magpie/rss_parse.inc
inc/magpie/rss_utils.inc
lib/exe/media.php
lib/tpl/default/mediaedit.php
lib/tpl/default/media.php
lib/tpl/default/mediaref.php
# removed in 2006-03-09
data/pages/wiki/playground.txt
inc/auth/ldap.php
inc/auth/mysql.php
inc/auth/pgsql.php
inc/auth/plain.php
inc/lang/ca/admin_acl.txt
inc/lang/cs/admin_acl.txt
inc/lang/da/admin_acl.txt
inc/lang/de/admin_acl.txt
inc/lang/en/admin_acl.txt
inc/lang/et/admin_acl.txt
inc/lang/eu/admin_acl.txt
inc/lang/fr/admin_acl.txt
inc/lang/it/admin_acl.txt
inc/lang/ja/admin_acl.txt
inc/lang/lt/admin_acl.txt
inc/lang/lv/admin_acl.txt
inc/lang/nl/admin_acl.txt
inc/lang/no/admin_acl.txt
inc/lang/pl/admin_acl.txt
inc/lang/pt/admin_acl.txt
inc/lang/vi/admin_acl.txt
inc/lang/zh-tw/admin_acl.txt
inc/parser/spamcheck.php
lib/images/favicon.ico
lib/images/thumbup.gif
lib/images/toolbar/code.png
lib/images/toolbar/empty.png
lib/images/toolbar/extlink.png
lib/images/toolbar/fonth1.png
lib/images/toolbar/fonth2.png
lib/images/toolbar/fonth3.png
lib/images/toolbar/fonth4.png
lib/images/toolbar/fonth5.png
lib/images/toolbar/list.png
lib/images/toolbar/list_ul.png
lib/images/toolbar/rule.png
lib/tpl/default/images/interwiki.png
.github/version.php
.github/workflows/release.yml
_test/tests/inc/form/checkableelement.test.php
_test/tests/inc/pageutils_resolve_id.test.php
inc/Parsing/ParserMode/Html.php
inc/Parsing/ParserMode/Php.php
_test/tests/lib/exe/js_js_compress.test.php
_test/tests/lib/exe/js_js_compress/test-CommentInDoubleQuotes1-in.js
_test/tests/lib/exe/js_js_compress/test-CommentInDoubleQuotes1-out.js
_test/tests/lib/exe/js_js_compress/test-CommentInDoubleQuotes2-in.js
_test/tests/lib/exe/js_js_compress/test-CommentInDoubleQuotes2-out.js
_test/tests/lib/exe/js_js_compress/test-CommentInSingleQuotes1-in.js
_test/tests/lib/exe/js_js_compress/test-CommentInSingleQuotes1-out.js
_test/tests/lib/exe/js_js_compress/test-CommentInSingleQuotes2-in.js
_test/tests/lib/exe/js_js_compress/test-CommentInSingleQuotes2-out.js
_test/tests/lib/exe/js_js_compress/test-CommentMultiline-in.js
_test/tests/lib/exe/js_js_compress/test-CommentMultiline-out.js
_test/tests/lib/exe/js_js_compress/test-CommentSingleLine-in.js
_test/tests/lib/exe/js_js_compress/test-CommentSingleLine-out.js
_test/tests/lib/exe/js_js_compress/test-IfThenElseBraces-in.js
_test/tests/lib/exe/js_js_compress/test-IfThenElseBraces-out.js
_test/tests/lib/exe/js_js_compress/test-IfThenElseNoBraces-in.js
_test/tests/lib/exe/js_js_compress/test-IfThenElseNoBraces-out.js
_test/tests/lib/exe/js_js_compress/test-RegexpBackslash-in.js
_test/tests/lib/exe/js_js_compress/test-RegexpBackslash-out.js
_test/tests/lib/exe/js_js_compress/test-RegexpSimple-in.js
_test/tests/lib/exe/js_js_compress/test-RegexpSimple-out.js
_test/tests/lib/exe/js_js_compress/test-RegexpSimpleWhitespace-in.js
_test/tests/lib/exe/js_js_compress/test-RegexpSimpleWhitespace-out.js
_test/tests/lib/exe/js_js_compress/test-RegexpString-in.js
_test/tests/lib/exe/js_js_compress/test-RegexpString-out.js
_test/tests/lib/exe/js_js_compress/test-StatementDoWhile-in.js
_test/tests/lib/exe/js_js_compress/test-StatementDoWhile-out.js
_test/tests/lib/exe/js_js_compress/test-StatementForIn-in.js
_test/tests/lib/exe/js_js_compress/test-StatementForIn-out.js
_test/tests/lib/exe/js_js_compress/test-StatementNew-in.js
_test/tests/lib/exe/js_js_compress/test-StatementNew-out.js
_test/tests/lib/exe/js_js_compress/test-StatementSwitchCase-in.js
_test/tests/lib/exe/js_js_compress/test-StatementSwitchCase-out.js
_test/tests/lib/exe/js_js_compress/test-StringDoubleQuotes-in.js
_test/tests/lib/exe/js_js_compress/test-StringDoubleQuotes-out.js
_test/tests/lib/exe/js_js_compress/test-StringSingleQuotes-in.js
_test/tests/lib/exe/js_js_compress/test-StringSingleQuotes-out.js
vendor/kissifrot/php-ixr/.editorconfig
vendor/kissifrot/php-ixr/.gitignore
_test/tests/inc/pageutils_resolve_mediaid.test.php
_test/tests/inc/pageutils_resolve_pageid.test.php
vendor/phpseclib/phpseclib/phpseclib/Net/SCP.php
vendor/phpseclib/phpseclib/phpseclib/Net/SSH1.php
vendor/marcusschwarz/lesserphp/README.md
vendor/marcusschwarz/lesserphp/lessc.inc.php

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
You can safely delete this file.

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,84 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 128.17 128.04">
<defs>
<linearGradient id="a">
<stop stop-color="#d69c00" offset="0"/>
<stop stop-color="#ffe658" offset="1"/>
</linearGradient>
<linearGradient id="n" x1="192.04" x2="263.67" y1="262.26" y2="262.26" gradientUnits="userSpaceOnUse">
<stop stop-color="#00a423" offset="0"/>
<stop stop-color="#00b427" offset="1"/>
</linearGradient>
<linearGradient id="p" x1="191.75" x2="255.66" y1="258.92" y2="258.92" gradientUnits="userSpaceOnUse">
<stop stop-color="#00b62b" offset="0"/>
<stop stop-color="#a1d784" offset="1"/>
</linearGradient>
<linearGradient id="m" x1="184.07" x2="201.41" y1="246.36" y2="246.36" gradientUnits="userSpaceOnUse" xlink:href="#a"/>
<linearGradient id="d" x1="162.76" x2="240.85" y1="184.99" y2="289.5" gradientUnits="userSpaceOnUse">
<stop stop-color="#ede1ae" offset="0"/>
<stop stop-color="#fefdfa" offset="1"/>
</linearGradient>
<linearGradient id="b" x1="140.16" x2="136.14" y1="303.79" y2="195.87" gradientUnits="userSpaceOnUse">
<stop stop-color="#fbf6f0" offset="0"/>
<stop stop-color="#e9dac7" offset="1"/>
</linearGradient>
<linearGradient id="c" x1="286.16" x2="185.81" y1="262.29" y2="172.32" gradientUnits="userSpaceOnUse">
<stop stop-color="#fbfaf9" offset="0"/>
<stop stop-color="#e9dac7" offset="1"/>
</linearGradient>
<linearGradient id="h" x1="213.97" x2="244.79" y1="220.07" y2="265.4" gradientUnits="userSpaceOnUse">
<stop stop-opacity=".173" offset="0"/>
<stop stop-color="#c7cec2" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="l" x1="184.31" x2="224.67" y1="241.53" y2="307.53" gradientUnits="userSpaceOnUse">
<stop stop-opacity=".173" offset="0"/>
<stop stop-color="#c7cec2" stop-opacity="0" offset="1"/>
</linearGradient>
<linearGradient id="e" x1="202.42" x2="206.06" y1="222.05" y2="210.36" gradientUnits="userSpaceOnUse">
<stop stop-color="#e32525" stop-opacity=".816" offset="0"/>
<stop stop-color="#e32525" stop-opacity=".571" offset="1"/>
</linearGradient>
<linearGradient id="f" x1="248.62" x2="251.64" y1="234.52" y2="213.12" gradientUnits="userSpaceOnUse">
<stop stop-color="#25901b" stop-opacity=".837" offset="0"/>
<stop stop-color="#25901b" stop-opacity=".378" offset="1"/>
</linearGradient>
<linearGradient id="g" x1="275.72" x2="255.68" y1="251.56" y2="217.94" gradientUnits="userSpaceOnUse">
<stop stop-color="#3a9030" stop-opacity=".837" offset="0"/>
<stop stop-color="#3d9c32" stop-opacity=".796" offset="1"/>
</linearGradient>
<linearGradient id="k" x1="219.66" x2="277.88" y1="192.73" y2="192.73" gradientUnits="userSpaceOnUse">
<stop stop-color="#ce411e" offset="0"/>
<stop stop-color="#ecad8d" offset="1"/>
</linearGradient>
<linearGradient id="j" x1="219.21" x2="286.23" y1="189.02" y2="189.02" gradientUnits="userSpaceOnUse">
<stop stop-color="#8f2a15" offset="0"/>
<stop stop-color="#c8381b" offset="1"/>
</linearGradient>
<radialGradient id="o" cx="257.41" cy="274.64" r="7.144" gradientTransform="matrix(1 0 0 1.6314 0 -173.4)" gradientUnits="userSpaceOnUse" xlink:href="#a"/>
<radialGradient id="i" cx="224.41" cy="212.8" r="8.681" gradientTransform="matrix(1 0 0 .98418 0 3.367)" gradientUnits="userSpaceOnUse" xlink:href="#a"/>
</defs>
<g fill-rule="evenodd" stroke="#000">
<path transform="matrix(.98991 -.14067 .20106 .97564 -158.095 -157.774)" d="m120.22 196.44 70.907-.792-2.403 109.05-71.718.373 3.214-108.63z" fill="url(#b)" stroke-width=".722"/>
<path d="m179.2 182.09 79.842-19.517 26.614 101.72-82.503 21.587L179.2 182.09z" fill="url(#c)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path transform="matrix(.99561 -.09253 .08102 .9927 -158.095 -157.774)" d="m159.01 181.74 85.586.534v110.47l-84.534-2.513-1.052-108.5z" fill="url(#d)" stroke-width="1.004"/>
</g>
<path d="M29.106 38.471 27.179 18.46l5.325-.508.226 2.353-2.47.236 1.474 15.305 2.47-.236.226 2.354-5.324.508m7.313-.698L34.492 17.76l5.325-.509.227 2.354-2.47.236 1.474 15.304 2.47-.236.226 2.354-5.325.509m5.409-20.713 5.784-.553c1.304-.124 2.308-.12 3.012.014.945.182 1.78.586 2.501 1.212.722.626 1.303 1.423 1.741 2.391.438.962.728 2.174.868 3.636.124 1.285.07 2.408-.16 3.37-.284 1.173-.755 2.145-1.414 2.918-.498.585-1.199 1.071-2.104 1.458-.677.287-1.6.486-2.77.598l-5.955.569-1.504-15.613m3.42 2.339.995 10.341 2.363-.225c.884-.085 1.517-.195 1.9-.332.5-.177.904-.434 1.21-.771.313-.338.542-.865.69-1.582.145-.723.16-1.688.044-2.895s-.312-2.123-.588-2.75c-.276-.625-.624-1.1-1.044-1.426-.42-.325-.932-.523-1.536-.595-.451-.057-1.322-.024-2.612.1l-1.422.135M61.39 30.95l-5.245-15.256 3.24-.31 3.395 10.499 1.833-10.998 3.764-.36 3.797 10.644 1.356-11.136 3.187-.304-2.304 15.976-3.357.321-4.246-11.374-1.988 11.97-3.432.327m21.154-17.777 1.927 20.012-5.325.509-.226-2.354 2.47-.236-1.476-15.325-2.47.236-.224-2.333 5.324-.508m7.314-.699 1.927 20.012-5.325.509-.227-2.354 2.47-.236-1.475-15.325-2.47.236-.225-2.333 5.325-.508" fill="#6184a3"/>
<g fill-rule="evenodd">
<path d="M174.76 201.6c-6.046 2.467-10.168 4.42-12.885 6.35s-3.193 4.6-3.246 6.267c-.027.832.08 1.777.632 2.44.55.662 1.807 1.874 2.757 2.385 1.901 1.023 7.542 2.43 10.52 3.073 11.908 2.577 26.805 1.682 26.805 1.682 1.694 1.245 2.833 2.824 3.27 4.269 4.576-1.887 11.81-6.585 13.156-8.578-5.45-4.2-10.797-6.333-16.513-8.308-1.598-.72-2.88-1.227-.717 2.556.985 2.473.858 5.052.572 7.419 0 0-16.527.406-28.238-2.127-2.928-.633-5.467-.955-7.22-1.898-.876-.472-1.482-.821-1.915-1.341s-.22-1.291-.201-1.86c.036-1.135.253-1.67 2.861-3.524s5.655-3.362 11.66-5.812c-.088-1.291-.29-2.506-1.298-2.993z" fill="url(#e)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="M269.63 220.75c-1.436-.14-2.58.303-2.56 1.502.943.857 1.349 2.435 1.485 3.14s.036 1.22-.486 1.89c-1.043 1.342-3.125 1.57-6.5 2.72-6.752 2.305-16.893 2.526-27.907 3.847-22.028 2.642-39.032 3.761-39.032 3.761 1.983-4.647 6.328-4.412 6.349-8.21.273-.897-3.146-1.316-5.1-.107-4.267 3.702-7.591 6.754-10.694 10.513l1.888 3.085s26.13-2.89 48.198-5.536c11.034-1.324 20.956-1.999 27.81-4.338 3.427-1.169 5.96-1.49 7.641-3.52.632-.762 1.352-3.046 1.068-4.733-.22-1.302-1.15-3.098-2.16-4.014z" fill="url(#f)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="M254.36 220.34c-6.85 3.242-7.153 8.61-5.96 12.799s5.263 8.757 9.322 12.406c8.116 7.299 12.06 9.332 12.06 9.332-3.715-.104-7.9-1.412-8.133.493-.949 2.975 11.49 3.475 17.438 2.702-1.395-7.579-3.794-13.215-7.732-14.903-1.685-.148.312 4.724.77 9.396 0 0-3.625-1.732-11.605-8.908-3.99-3.588-7.374-7.342-8.473-11.201s.077-6.12 4.95-9.532c.929-.995-1.29-2.459-2.637-2.584z" fill="url(#g)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
</g>
<path d="m213.97 234.58 2.188-14.429 15.22 6.088 21.494 29.948-20.406 9.218-18.495-30.826z" fill="url(#h)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m232.56 219.53-15.928.322 3.088-15.157 12.84 14.835z" fill="url(#i)" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m63.49 60.634-4.412.078.854-3.966 3.557 3.888z" fill="#812310" fill-rule="evenodd"/>
<path d="m269.44 159.27.098 8.915 8.058 8.723 7.76.8-52.808 41.84-6.665-3.307-5.083-5.618-1.09-5.912 49.73-45.44z" fill="url(#j)" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m268.95 168.33 8.343 8.827-51.101 38.683-4.92-5.443 47.678-42.066z" fill="url(#k)" fill-rule="evenodd" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m285.34 177.73-8.162-.866-7.752-8.679.013-9.143 8.362.752 7.189 9.577.35 8.359z" fill="#ffe965" fill-rule="evenodd" stroke="#000" stroke-linejoin="round" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m122.605 10.009.165 4.04-3.814-.714-2.874-3.176-.281-3.52 3.854-.166 2.95 3.536z" fill="#cb391c" fill-rule="evenodd"/>
<path d="m183.89 256.83 1-16.307 17.288 8.44 26.055 38.01-29.281-1.135-15.062-29.009z" fill="url(#l)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m200.91 238.45-8.046 15.774-7.056-13.573 15.102-2.2z" fill="url(#m)" stroke="#000" stroke-linejoin="round" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m201.05 238.55 62.117 24.919-7.887 3.214-4.351 9.31 1.171 9.964-59.315-31.728-.494-7.364 3.096-5.828 5.662-2.488z" fill="url(#n)" stroke="#000" stroke-linejoin="round" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m255.28 266.54 7.924-3.048.853 10.24-3.9 8.29-8.047 3.78-1.34-9.631 4.51-9.631z" fill="url(#o)" stroke="#000" stroke-linejoin="round" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m195.75 241.42 59.131 24.796-4.592 9.766-57.49-29.01 2.951-5.553z" fill="url(#p)" transform="matrix(.99993 0 0 .99598 -158.095 -157.774)"/>
<path d="m96.907 116.33 2.084-4.09 2.964-1.067.695 3.359-1.768 3.841-3.155 1.378-.82-3.422z" fill="#00b527"/>
<path d="m28.462 82.257 3.55-.471-2.024 3.525-1.526-3.054z" fill="#258209"/>
</svg>

After

Width:  |  Height:  |  Size: 9.1 KiB

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
====== PlayGround ======

View File

@ -0,0 +1,62 @@
====== DokuWiki ======
[[doku>wiki:dokuwiki|{{wiki:dokuwiki-128.png }}]] DokuWiki is a simple to use and highly versatile Open Source [[wp>wiki]] software that doesn't require a database. It is loved by users for its clean and readable [[wiki:syntax]]. The ease of maintenance, backup and integration makes it an administrator's favorite. Built in [[doku>acl|access controls]] and [[doku>auth|authentication connectors]] make DokuWiki especially useful in the enterprise context and the large number of [[doku>plugins]] contributed by its vibrant community allow for a broad range of use cases beyond a traditional wiki.
Read the [[doku>manual|DokuWiki Manual]] to unleash the full power of DokuWiki.
===== Download =====
DokuWiki is available at https://download.dokuwiki.org/
===== Read More =====
All documentation and additional information besides the [[syntax|syntax description]] is maintained in the DokuWiki at [[doku>|www.dokuwiki.org]].
**About DokuWiki**
* [[doku>features|A feature list]] :!:
* [[doku>users|Happy Users]]
* [[doku>press|Who wrote about it]]
* [[doku>blogroll|What Bloggers think]]
* [[https://www.wikimatrix.org/show/DokuWiki|Compare it with other wiki software]]
**Installing DokuWiki**
* [[doku>requirements|System Requirements]]
* [[https://download.dokuwiki.org/|Download DokuWiki]] :!:
* [[doku>changes|Change Log]]
* [[doku>Install|How to install or upgrade]] :!:
* [[doku>config|Configuration]]
**Using DokuWiki**
* [[doku>syntax|Wiki Syntax]]
* [[doku>manual|The manual]] :!:
* [[doku>FAQ|Frequently Asked Questions (FAQ)]]
* [[doku>glossary|Glossary]]
**Customizing DokuWiki**
* [[doku>tips|Tips and Tricks]]
* [[doku>Template|How to create and use templates]]
* [[doku>plugins|Installing plugins]]
* [[doku>development|Development Resources]]
**DokuWiki Feedback and Community**
* [[doku>newsletter|Subscribe to the newsletter]] :!:
* [[doku>mailinglist|Join the mailing list]]
* [[https://forum.dokuwiki.org|Check out the user forum]]
* [[doku>irc|Talk to other users in the IRC channel]]
* [[https://github.com/splitbrain/dokuwiki/issues|Submit bugs and feature wishes]]
* [[doku>thanks|Some humble thanks]]
===== Copyright =====
2004-2020 (c) Andreas Gohr <andi@splitbrain.org>((Please do not contact me for help and support -- use the [[doku>mailinglist]] or [[https://forum.dokuwiki.org|forum]] instead)) and the DokuWiki Community
The DokuWiki engine is licensed under [[https://www.gnu.org/licenses/gpl.html|GNU General Public License]] Version 2. If you use DokuWiki in your company, consider [[doku>donate|donating]] a few bucks ;-).
Not sure what this means? See the [[doku>faq:license|FAQ on the Licenses]].

View File

@ -0,0 +1,475 @@
====== Formatting Syntax ======
[[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing "Edit this page". If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too.
===== Basic Text Formatting =====
DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts. Of course you can **__//''combine''//__** all these.
DokuWiki supports **bold**, //italic//, __underlined__ and ''monospaced'' texts.
Of course you can **__//''combine''//__** all these.
You can use <sub>subscript</sub> and <sup>superscript</sup>, too.
You can use <sub>subscript</sub> and <sup>superscript</sup>, too.
You can mark something as <del>deleted</del> as well.
You can mark something as <del>deleted</del> as well.
**Paragraphs** are created from blank lines. If you want to **force a newline** without a paragraph, you can use two backslashes followed by a whitespace or the end of line.
This is some text with some linebreaks\\ Note that the
two backslashes are only recognized at the end of a line\\
or followed by\\ a whitespace \\this happens without it.
This is some text with some linebreaks\\ Note that the
two backslashes are only recognized at the end of a line\\
or followed by\\ a whitespace \\this happens without it.
You should use forced newlines only if really needed.
===== Links =====
DokuWiki supports multiple ways of creating links.
==== External ====
External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too.
DokuWiki supports multiple ways of creating links. External links are recognized
automagically: http://www.google.com or simply www.google.com - You can set
link text as well: [[http://www.google.com|This Link points to google]]. Email
addresses like this one: <andi@splitbrain.org> are recognized, too.
==== Internal ====
Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]].
Internal links are created by using square brackets. You can either just give
a [[pagename]] or use an additional [[pagename|link text]].
[[doku>pagename|Wiki pagenames]] are converted to lowercase automatically, special characters are not allowed.
You can use [[some:namespaces]] by using a colon in the pagename.
You can use [[some:namespaces]] by using a colon in the pagename.
For details about namespaces see [[doku>namespaces]].
Linking to a specific section is possible, too. Just add the section name behind a hash character as known from HTML. This links to [[syntax#internal|this Section]].
This links to [[syntax#internal|this Section]].
Notes:
* Links to [[syntax|existing pages]] are shown in a different style from [[nonexisting]] ones.
* DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled.
* When a section's heading is changed, its bookmark changes, too. So don't rely on section linking too much.
==== Interwiki ====
DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis.
For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
==== Windows Shares ====
Windows shares like [[\\server\share|this]] are recognized, too. Please note that these only make sense in a homogeneous user group like a corporate [[wp>Intranet]].
Windows Shares like [[\\server\share|this]] are recognized, too.
Notes:
* For security reasons direct browsing of windows shares only works in Microsoft Internet Explorer per default (and only in the "local zone").
* For Mozilla and Firefox it can be enabled through different workaround mentioned in the [[http://kb.mozillazine.org/Links_to_local_pages_do_not_work|Mozilla Knowledge Base]]. However, there will still be a JavaScript warning about trying to open a Windows Share. To remove this warning (for all users), put the following line in ''conf/lang/en/lang.php'' (more details at [[doku>localization#changing_some_localized_texts_and_strings_in_your_installation|localization]]): <code - conf/lang/en/lang.php>
<?php
/**
* Customization of the english language file
* Copy only the strings that needs to be modified
*/
$lang['js']['nosmblinks'] = '';
</code>
==== Image Links ====
You can also use an image to link to another internal or external page by combining the syntax for links and [[#images_and_other_files|images]] (see below) like this:
[[http://php.net|{{wiki:dokuwiki-128.png}}]]
[[http://php.net|{{wiki:dokuwiki-128.png}}]]
Please note: The image formatting is the only formatting syntax accepted in link names.
The whole [[#images_and_other_files|image]] and [[#links|link]] syntax is supported (including image resizing, internal and external images and URLs and interwiki links).
===== Footnotes =====
You can add footnotes ((This is a footnote)) by using double parentheses.
You can add footnotes ((This is a footnote)) by using double parentheses.
===== Sectioning =====
You can use up to five different levels of headlines to structure your content. If you have more than three headlines, a table of contents is generated automatically -- this can be disabled by including the string ''<nowiki>~~NOTOC~~</nowiki>'' in the document.
==== Headline Level 3 ====
=== Headline Level 4 ===
== Headline Level 5 ==
==== Headline Level 3 ====
=== Headline Level 4 ===
== Headline Level 5 ==
By using four or more dashes, you can make a horizontal line:
----
===== Media Files =====
You can include external and internal [[doku>images|images, videos and audio files]] with curly brackets. Optionally you can specify the size of them.
Real size: {{wiki:dokuwiki-128.png}}
Resize to given width: {{wiki:dokuwiki-128.png?50}}
Resize to given width and height((when the aspect ratio of the given width and height doesn't match that of the image, it will be cropped to the new ratio before resizing)): {{wiki:dokuwiki-128.png?200x50}}
Resized external image:           {{https://www.php.net/images/php.gif?200x50}}
Real size: {{wiki:dokuwiki-128.png}}
Resize to given width: {{wiki:dokuwiki-128.png?50}}
Resize to given width and height: {{wiki:dokuwiki-128.png?200x50}}
Resized external image:           {{https://www.php.net/images/php.gif?200x50}}
By using left or right whitespaces you can choose the alignment.
{{ wiki:dokuwiki-128.png}}
{{wiki:dokuwiki-128.png }}
{{ wiki:dokuwiki-128.png }}
{{ wiki:dokuwiki-128.png}}
{{wiki:dokuwiki-128.png }}
{{ wiki:dokuwiki-128.png }}
Of course, you can add a title (displayed as a tooltip by most browsers), too.
{{ wiki:dokuwiki-128.png |This is the caption}}
{{ wiki:dokuwiki-128.png |This is the caption}}
For linking an image to another page see [[#Image Links]] above.
==== Supported Media Formats ====
DokuWiki can embed the following media formats directly.
| Image | ''gif'', ''jpg'', ''png'' |
| Video | ''webm'', ''ogv'', ''mp4'' |
| Audio | ''ogg'', ''mp3'', ''wav'' |
| Flash | ''swf'' |
If you specify a filename that is not a supported media format, then it will be displayed as a link instead.
By adding ''?linkonly'' you provide a link to the media without displaying it inline
{{wiki:dokuwiki-128.png?linkonly}}
{{wiki:dokuwiki-128.png?linkonly}} This is just a link to the image.
==== Fallback Formats ====
Unfortunately not all browsers understand all video and audio formats. To mitigate the problem, you can upload your file in different formats for maximum browser compatibility.
For example consider this embedded mp4 video:
{{video.mp4|A funny video}}
When you upload a ''video.webm'' and ''video.ogv'' next to the referenced ''video.mp4'', DokuWiki will automatically add them as alternatives so that one of the three files is understood by your browser.
Additionally DokuWiki supports a "poster" image which will be shown before the video has started. That image needs to have the same filename as the video and be either a jpg or png file. In the example above a ''video.jpg'' file would work.
===== Lists =====
Dokuwiki supports ordered and unordered lists. To create a list item, indent your text by two spaces and use a ''*'' for unordered lists or a ''-'' for ordered ones.
* This is a list
* The second item
* You may have different levels
* Another item
- The same list but ordered
- Another item
- Just use indention for deeper levels
- That's it
<code>
* This is a list
* The second item
* You may have different levels
* Another item
- The same list but ordered
- Another item
- Just use indention for deeper levels
- That's it
</code>
Also take a look at the [[doku>faq:lists|FAQ on list items]].
===== Text Conversions =====
DokuWiki can convert certain pre-defined characters or strings into images or other text or HTML.
The text to image conversion is mainly done for smileys. And the text to HTML conversion is used for typography replacements, but can be configured to use other HTML as well.
==== Text to Image Conversions ====
DokuWiki converts commonly used [[wp>emoticon]]s to their graphical equivalents. Those [[doku>Smileys]] and other images can be configured and extended. Here is an overview of Smileys included in DokuWiki:
* 8-) %% 8-) %%
* 8-O %% 8-O %%
* :-( %% :-( %%
* :-) %% :-) %%
* =) %% =) %%
* :-/ %% :-/ %%
* :-\ %% :-\ %%
* :-? %% :-? %%
* :-D %% :-D %%
* :-P %% :-P %%
* :-O %% :-O %%
* :-X %% :-X %%
* :-| %% :-| %%
* ;-) %% ;-) %%
* ^_^ %% ^_^ %%
* m( %% m( %%
* :?: %% :?: %%
* :!: %% :!: %%
* LOL %% LOL %%
* FIXME %% FIXME %%
* DELETEME %% DELETEME %%
==== Text to HTML Conversions ====
Typography: [[DokuWiki]] can convert simple text characters to their typographically correct entities. Here is an example of recognized characters.
-> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r)
"He thought 'It's a man's world'..."
<code>
-> <- <-> => <= <=> >> << -- --- 640x480 (c) (tm) (r)
"He thought 'It's a man's world'..."
</code>
The same can be done to produce any kind of HTML, it just needs to be added to the [[doku>entities|pattern file]].
There are three exceptions which do not come from that pattern file: multiplication entity (640x480), 'single' and "double quotes". They can be turned off through a [[doku>config:typography|config option]].
===== Quoting =====
Some times you want to mark some text to show it's a reply or comment. You can use the following syntax:
<code>
I think we should do it
> No we shouldn't
>> Well, I say we should
> Really?
>> Yes!
>>> Then lets do it!
</code>
I think we should do it
> No we shouldn't
>> Well, I say we should
> Really?
>> Yes!
>>> Then lets do it!
===== Tables =====
DokuWiki supports a simple syntax to create tables.
^ Heading 1 ^ Heading 2 ^ Heading 3 ^
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | some colspan (note the double pipe) ||
| Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 |
Table rows have to start and end with a ''|'' for normal rows or a ''^'' for headers.
^ Heading 1 ^ Heading 2 ^ Heading 3 ^
| Row 1 Col 1 | Row 1 Col 2 | Row 1 Col 3 |
| Row 2 Col 1 | some colspan (note the double pipe) ||
| Row 3 Col 1 | Row 3 Col 2 | Row 3 Col 3 |
To connect cells horizontally, just make the next cell completely empty as shown above. Be sure to have always the same amount of cell separators!
Vertical tableheaders are possible, too.
| ^ Heading 1 ^ Heading 2 ^
^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 |
^ Heading 4 | no colspan this time | |
^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 |
As you can see, it's the cell separator before a cell which decides about the formatting:
| ^ Heading 1 ^ Heading 2 ^
^ Heading 3 | Row 1 Col 2 | Row 1 Col 3 |
^ Heading 4 | no colspan this time | |
^ Heading 5 | Row 2 Col 2 | Row 2 Col 3 |
You can have rowspans (vertically connected cells) by adding ''%%:::%%'' into the cells below the one to which they should connect.
^ Heading 1 ^ Heading 2 ^ Heading 3 ^
| Row 1 Col 1 | this cell spans vertically | Row 1 Col 3 |
| Row 2 Col 1 | ::: | Row 2 Col 3 |
| Row 3 Col 1 | ::: | Row 2 Col 3 |
Apart from the rowspan syntax those cells should not contain anything else.
^ Heading 1 ^ Heading 2 ^ Heading 3 ^
| Row 1 Col 1 | this cell spans vertically | Row 1 Col 3 |
| Row 2 Col 1 | ::: | Row 2 Col 3 |
| Row 3 Col 1 | ::: | Row 2 Col 3 |
You can align the table contents, too. Just add at least two whitespaces at the opposite end of your text: Add two spaces on the left to align right, two spaces on the right to align left and two spaces at least at both ends for centered text.
^ Table with alignment ^^^
| right| center |left |
|left | right| center |
| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |
This is how it looks in the source:
^ Table with alignment ^^^
| right| center |left |
|left | right| center |
| xxxxxxxxxxxx | xxxxxxxxxxxx | xxxxxxxxxxxx |
Note: Vertical alignment is not supported.
===== No Formatting =====
If you need to display text exactly like it is typed (without any formatting), enclose the area either with ''%%<nowiki>%%'' tags or even simpler, with double percent signs ''<nowiki>%%</nowiki>''.
<nowiki>
This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it.
</nowiki>
The same is true for %%//__this__ text// with a smiley ;-)%%.
<nowiki>
This is some text which contains addresses like this: http://www.splitbrain.org and **formatting**, but nothing is done with it.
</nowiki>
The same is true for %%//__this__ text// with a smiley ;-)%%.
===== Code Blocks =====
You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags ''%%<code>%%'' or ''%%<file>%%''.
This is text is indented by two spaces.
<code>
This is preformatted code all spaces are preserved: like <-this
</code>
<file>
This is pretty much the same, but you could use it to show that you quoted a file.
</file>
Those blocks were created by this source:
This is text is indented by two spaces.
<code>
This is preformatted code all spaces are preserved: like <-this
</code>
<file>
This is pretty much the same, but you could use it to show that you quoted a file.
</file>
==== Syntax Highlighting ====
[[wiki:DokuWiki]] can highlight sourcecode, which makes it easier to read. It uses the [[http://qbnz.com/highlighter/|GeSHi]] Generic Syntax Highlighter -- so any language supported by GeSHi is supported. The syntax uses the same code and file blocks described in the previous section, but this time the name of the language syntax to be highlighted is included inside the tag, e.g. ''<nowiki><code java></nowiki>'' or ''<nowiki><file java></nowiki>''.
<code java>
/**
* The HelloWorldApp class implements an application that
* simply displays "Hello World!" to the standard output.
*/
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!"); //Display the string.
}
}
</code>
The following language strings are currently recognized: //4cs 6502acme 6502kickass 6502tasm 68000devpac abap actionscript3 actionscript ada aimms algol68 apache applescript apt_sources arm asm asp asymptote autoconf autohotkey autoit avisynth awk bascomavr bash basic4gl batch bf biblatex bibtex blitzbasic bnf boo caddcl cadlisp ceylon cfdg cfm chaiscript chapel cil c_loadrunner clojure c_mac cmake cobol coffeescript c cpp cpp-qt cpp-winapi csharp css cuesheet c_winapi dart dcl dcpu16 dcs delphi diff div dos dot d ecmascript eiffel email epc e erlang euphoria ezt f1 falcon fo fortran freebasic freeswitch fsharp gambas gdb genero genie gettext glsl gml gnuplot go groovy gwbasic haskell haxe hicest hq9plus html html4strict html5 icon idl ini inno intercal io ispfpanel java5 java javascript jcl j jquery julia kixtart klonec klonecpp kotlin latex lb ldif lisp llvm locobasic logtalk lolcode lotusformulas lotusscript lscript lsl2 lua m68k magiksf make mapbasic mathematica matlab mercury metapost mirc mk-61 mmix modula2 modula3 mpasm mxml mysql nagios netrexx newlisp nginx nimrod nsis oberon2 objc objeck ocaml-brief ocaml octave oobas oorexx oracle11 oracle8 oxygene oz parasail parigp pascal pcre perl6 perl per pf phix php-brief php pic16 pike pixelbender pli plsql postgresql postscript povray powerbuilder powershell proftpd progress prolog properties providex purebasic pycon pys60 python qbasic qml q racket rails rbs rebol reg rexx robots roff rpmspec rsplus ruby rust sas sass scala scheme scilab scl sdlbasic smalltalk smarty spark sparql sql sshconfig standardml stonescript swift systemverilog tclegg tcl teraterm texgraph text thinbasic tsql twig typoscript unicon upc urbi uscript vala vbnet vb vbscript vedit verilog vhdl vim visualfoxpro visualprolog whitespace whois winbatch wolfram xbasic xml xojo xorg_conf xpp yaml z80 zxbasic//
There are additional [[doku>syntax_highlighting|advanced options]] available for syntax highlighting, such as highlighting lines or adding line numbers.
==== Downloadable Code Blocks ====
When you use the ''%%<code>%%'' or ''%%<file>%%'' syntax as above, you might want to make the shown code available for download as well. You can do this by specifying a file name after language code like this:
<code>
<file php myexample.php>
<?php echo "hello world!"; ?>
</file>
</code>
<file php myexample.php>
<?php echo "hello world!"; ?>
</file>
If you don't want any highlighting but want a downloadable file, specify a dash (''-'') as the language code: ''%%<code - myfile.foo>%%''.
===== RSS/ATOM Feed Aggregation =====
[[DokuWiki]] can integrate data from external XML feeds. For parsing the XML feeds, [[http://simplepie.org/|SimplePie]] is used. All formats understood by SimplePie can be used in DokuWiki as well. You can influence the rendering by multiple additional space separated parameters:
^ Parameter ^ Description ^
| any number | will be used as maximum number items to show, defaults to 8 |
| reverse | display the last items in the feed first |
| author | show item authors names |
| date | show item dates |
| description| show the item description. All HTML tags will be stripped |
| nosort | do not sort the items in the feed |
| //n//[dhm] | refresh period, where d=days, h=hours, m=minutes. (e.g. 12h = 12 hours). |
The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contains dynamic external content. The parameter tells [[wiki:DokuWiki]] to re-render the page if it is more than //refresh period// since the page was last rendered.
By default the feed will be sorted by date, newest items first. You can sort it by oldest first using the ''reverse'' parameter, or display the feed as is with ''nosort''.
**Example:**
{{rss>http://slashdot.org/index.rss 5 author date 1h }}
{{rss>http://slashdot.org/index.rss 5 author date 1h }}
===== Control Macros =====
Some syntax influences how DokuWiki renders a page without creating any output it self. The following control macros are availble:
^ Macro ^ Description |
| %%~~NOTOC~~%% | If this macro is found on the page, no table of contents will be created |
| %%~~NOCACHE~~%% | DokuWiki caches all output by default. Sometimes this might not be wanted (eg. when the %%<php>%% syntax above is used), adding this macro will force DokuWiki to rerender a page on every call |
===== Syntax Plugins =====
DokuWiki's syntax can be extended by [[doku>plugins|Plugins]]. How the installed plugins are used is described on their appropriate description pages. The following syntax plugins are available in this particular DokuWiki installation:
~~INFO:syntaxplugins~~

View File

@ -0,0 +1,30 @@
====== Welcome to your new DokuWiki ======
Congratulations, your wiki is now up and running. Here are a few more tips to get you started.
Enjoy your work with DokuWiki,\\
-- the developers
===== Create your first pages =====
Your wiki needs to have a start page. As long as it doesn't exist, this link will be red: [[:start]].
Go on, follow that link and create the page. If you need help with using the syntax you can always refer to the [[wiki:syntax|syntax page]].
You might also want to use a sidebar. To create it, just edit the [[:sidebar]] page. Everything in that page will be shown in a margin column on the side. Read our [[doku>faq:sidebar|FAQ on sidebars]] to learn more.
Please be aware that not all templates support sidebars.
===== Customize your Wiki =====
Once you're comfortable with creating and editing pages you might want to have a look at the [[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first).
You may also want to see what [[doku>plugins|plugins]] and [[doku>templates|templates]] are available at DokuWiki.org to extend the functionality and looks of your DokuWiki installation.
===== Join the Community =====
DokuWiki is an Open Source project that thrives through user contributions. A good way to stay informed on what's going on and to get useful tips in using DokuWiki is subscribing to the [[doku>newsletter]].
The [[https://forum.dokuwiki.org|DokuWiki User Forum]] is an excellent way to get in contact with other DokuWiki users and is just one of the many ways to get [[doku>faq:support|support]].
Of course we'd be more than happy to have you [[doku>teams:getting_involved|getting involved]] with DokuWiki.

View File

@ -0,0 +1 @@
You can safely delete this file.

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/acl

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/action.php

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/admin.php

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/auth.php

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/authad

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/authldap

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/authpdo

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/authplain

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/cli.php

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/config

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/extension

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/index.html

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/info

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/logviewer

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/popularity

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/remote.php

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/revert

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/safefnrecode

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/styling

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/syntax.php

View File

@ -0,0 +1 @@
/var/www/html/lib/plugins.core/usermanager

View File

@ -0,0 +1 @@
/var/www/html/lib/tpl.core/dokuwiki

View File

@ -0,0 +1 @@
/var/www/html/lib/tpl.core/index.php

View File

@ -0,0 +1,37 @@
LoadModule rewrite_module modules/mod_rewrite.so
ServerName nineapache.local
ProxyRequests Off
ProxyPreserveHost On
<Proxy *>
Require all granted
</Proxy>
ProxyPass /dokuwiki http://dokuwiki/dokuwiki retry=0 keepalive=On
ProxyPassReverse /dokuwiki http://dokuwiki/dokuwiki retry=0
RequestHeader set X-Forwarded-Host "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-Server "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-For "%{REMOTE_ADDR}s"
RequestHeader set Host "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-Proto "http"
DocumentRoot "/app/public"
<Directory "/app/public">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
RewriteEngine On
RewriteCond %{REQUEST_URI}::$0 ^(/.+)/(.*)::\2$
RewriteRule .* - [E=BASE:%1]
RewriteCond %{HTTP:Authorization} .+
RewriteRule ^ - [E=HTTP_AUTHORIZATION:%0]
RewriteCond %{ENV:REDIRECT_STATUS} =""
RewriteRule ^index\.php(?:/(.*)|$) %{ENV:BASE}/$1 [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ %{ENV:BASE}/index.php [L]
</Directory>

View File

@ -0,0 +1,29 @@
version: '3'
services:
nineapache:
image: reg.cadoles.com/envole/nineapache:8.1
container_name: dokuwiki-nineapache
restart: always
healthcheck:
test: curl --fail http://localhost || exit 1
interval: 1s
timeout: 60s
networks:
- dokuwiki-network
ports:
- "80:80"
volumes:
- ./containers/nineapache/apache.conf:/etc/apache2/conf.d/zapp.conf
dokuwiki:
build:
context: ./containers/dokuwiki
image: reg.cadoles.com/envole/dokuwiki
container_name: dokuwiki-app
networks:
- dokuwiki-network
networks:
dokuwiki-network:
name: dokuwiki-network

View File

@ -80,6 +80,7 @@ wp site switch-language fr_FR
# Mise à jour theme / plugin / network # Mise à jour theme / plugin / network
wp theme install twentytwentyfour --allow-root wp theme install twentytwentyfour --allow-root
wp theme install lowfi --allow-root wp theme install lowfi --allow-root
wp theme enable lowfi --network
wp theme update --allow-root --all wp theme update --allow-root --all
wp plugin update --allow-root --all wp plugin update --allow-root --all

88
nine.sh
View File

@ -34,10 +34,13 @@ destroyall(){
destroy $MINIO_SERVICE_NAME 1 destroy $MINIO_SERVICE_NAME 1
destroy $OPENLDAP_SERVICE_NAME 1 destroy $OPENLDAP_SERVICE_NAME 1
destroy $KEYCLOAK_SERVICE_NAME 1 destroy $KEYCLOAK_SERVICE_NAME 1
destroy $NINEGATE_SERVICE_NAME 1
destroy $NINEBOARD_SERVICE_NAME 1
destroy $NEXTCLOUD_SERVICE_NAME 1 destroy $NEXTCLOUD_SERVICE_NAME 1
destroy $NINEBOARD_SERVICE_NAME 1
destroy $NINEGATE_SERVICE_NAME 1
destroy $WIKI_SERVICE_NAME 1
destroy $WORDPRESS_SERVICE_NAME 1 destroy $WORDPRESS_SERVICE_NAME 1
destroy $ADMINER_SERVICE_NAME 1 destroy $ADMINER_SERVICE_NAME 1
destroy $PHPLDAPADMIN_SERVICE_NAME 1 destroy $PHPLDAPADMIN_SERVICE_NAME 1
fi fi
@ -64,10 +67,13 @@ envall(){
env $MINIO_SERVICE_NAME env $MINIO_SERVICE_NAME
env $OPENLDAP_SERVICE_NAME env $OPENLDAP_SERVICE_NAME
env $KEYCLOAK_SERVICE_NAME env $KEYCLOAK_SERVICE_NAME
env $NINEGATE_SERVICE_NAME
env $NINEBOARD_SERVICE_NAME
env $NEXTCLOUD_SERVICE_NAME env $NEXTCLOUD_SERVICE_NAME
env $NINEBOARD_SERVICE_NAME
env $NINEGATE_SERVICE_NAME
env $WIKI_SERVICE_NAME
env $WORDPRESS_SERVICE_NAME env $WORDPRESS_SERVICE_NAME
env $ADMINER_SERVICE_NAME env $ADMINER_SERVICE_NAME
env $PHPLDAPADMIN_SERVICE_NAME env $PHPLDAPADMIN_SERVICE_NAME
} }
@ -191,24 +197,25 @@ function upkeycloak {
fi fi
} }
function upninegate {
if [[ $NINEGATE_ACTIVATE == 1 && $NINEGATE_LOCAL == 1 ]] function upnextcloud {
if [[ $NEXTCLOUD_ACTIVATE == 1 && $NEXTCLOUD_LOCAL == 1 ]]
then then
Title ${NINEGATE_SERVICE_NAME^^} Title ${NEXTCLOUD_SERVICE_NAME^^}
if [[ $MARIADB_ACTIVATE == 1 && $MARIADB_LOCAL == 1 ]] if [[ $MARIADB_ACTIVATE == 1 && $MARIADB_LOCAL == 1 ]]
then then
EchoVert "DATABASE" EchoVert "DATABASE"
Echo ${NINEGATE_SERVICE_NAME^^} Echo ${NEXTCLOUD_SERVICE_NAME^^}
docker-compose exec $MARIADB_SERVICE_NAME /nine/init.sh $NINEGATE_SERVICE_NAME
Echo Echo
docker-compose exec $MARIADB_SERVICE_NAME /nine/init.sh $NEXTCLOUD_SERVICE_NAME
fi fi
EchoVert "CONTAINER" EchoVert "CONTAINER"
upservice ${NINEGATE_SERVICE_NAME} upservice ${NEXTCLOUD_SERVICE_NAME}
chmod -R a+wr ./volume/ninegate/data
Echo Echo
fi fi
} }
function upnineboard { function upnineboard {
@ -231,24 +238,43 @@ function upnineboard {
fi fi
} }
function upnextcloud { function upninegate {
if [[ $NEXTCLOUD_ACTIVATE == 1 && $NEXTCLOUD_LOCAL == 1 ]] if [[ $NINEGATE_ACTIVATE == 1 && $NINEGATE_LOCAL == 1 ]]
then then
Title ${NEXTCLOUD_SERVICE_NAME^^} Title ${NINEGATE_SERVICE_NAME^^}
if [[ $MARIADB_ACTIVATE == 1 && $MARIADB_LOCAL == 1 ]] if [[ $MARIADB_ACTIVATE == 1 && $MARIADB_LOCAL == 1 ]]
then then
EchoVert "DATABASE" EchoVert "DATABASE"
Echo ${NEXTCLOUD_SERVICE_NAME^^} Echo ${NINEGATE_SERVICE_NAME^^}
docker-compose exec $MARIADB_SERVICE_NAME /nine/init.sh $NINEGATE_SERVICE_NAME
Echo Echo
docker-compose exec $MARIADB_SERVICE_NAME /nine/init.sh $NEXTCLOUD_SERVICE_NAME
fi fi
EchoVert "CONTAINER" EchoVert "CONTAINER"
upservice ${NEXTCLOUD_SERVICE_NAME} upservice ${NINEGATE_SERVICE_NAME}
chmod -R a+wr ./volume/ninegate/data
Echo Echo
fi fi
}
function upwiki {
if [[ $WIKI_ACTIVATE == 1 && $WIKI_LOCAL == 1 ]]
then
Title ${WIKI_SERVICE_NAME^^}
if [[ $MARIADB_ACTIVATE == 1 && $MARIADB_LOCAL == 1 ]]
then
EchoVert "DATABASE"
Echo ${WIKI_SERVICE_NAME^^}
docker-compose exec $MARIADB_SERVICE_NAME /nine/init.sh $WIKI_SERVICE_NAME
Echo
fi
EchoVert "CONTAINER"
upservice ${WIKI_SERVICE_NAME}
Echo
fi
} }
function upwordpress { function upwordpress {
@ -336,14 +362,17 @@ up(){
# KEYCLOAK # KEYCLOAK
upkeycloak upkeycloak
# NINEGATE # NEXTCLOUD
upninegate upnextcloud
# NINEBOARD # NINEBOARD
upnineboard upnineboard
# NEXTCLOUD # NINEGATE
upnextcloud upninegate
# WIKI
upwiki
# WORDPRESS # WORDPRESS
upwordpress upwordpress
@ -374,10 +403,13 @@ destroyall(){
destroy $MINIO_SERVICE_NAME 1 destroy $MINIO_SERVICE_NAME 1
destroy $OPENLDAP_SERVICE_NAME 1 destroy $OPENLDAP_SERVICE_NAME 1
destroy $KEYCLOAK_SERVICE_NAME 1 destroy $KEYCLOAK_SERVICE_NAME 1
destroy $NINEGATE_SERVICE_NAME 1
destroy $NINEBOARD_SERVICE_NAME 1
destroy $NEXTCLOUD_SERVICE_NAME 1 destroy $NEXTCLOUD_SERVICE_NAME 1
destroy $NINEBOARD_SERVICE_NAME 1
destroy $NINEGATE_SERVICE_NAME 1
destroy $WIKI_SERVICE_NAME 1
destroy $WORDPRESS_SERVICE_NAME 1 destroy $WORDPRESS_SERVICE_NAME 1
destroy $ADMINER_SERVICE_NAME 1 destroy $ADMINER_SERVICE_NAME 1
destroy $PHPLDAPADMIN_SERVICE_NAME 1 destroy $PHPLDAPADMIN_SERVICE_NAME 1
fi fi
@ -455,6 +487,16 @@ destroy(){
fi fi
fi fi
if [[ "$1" == "$WIKI_SERVICE_NAME" && $WIKI_ACTIVATE == 1 && $WIKI_LOCAL == 1 ]]
then
if [[ -z $2 ]]; then Question_ouinon "Souhaitez-vous supprimer la BDD associé à $1 ?";fi
if [[ "$?" = 0 || -z $2 ]]
then
docker-compose exec $MARIADB_SERVICE_NAME /nine/delete.sh $WIKI_SERVICE_NAME
sudo rm -rf volume/wiki/data
fi
fi
if [[ "$1" == "$WORDPRESS_SERVICE_NAME" && $WORDPRESS_ACTIVATE == 1 && $WORDPRESS_LOCAL == 1 ]] if [[ "$1" == "$WORDPRESS_SERVICE_NAME" && $WORDPRESS_ACTIVATE == 1 && $WORDPRESS_LOCAL == 1 ]]
then then
if [[ -z $2 ]]; then Question_ouinon "Souhaitez-vous supprimer la BDD associé à $1 ?";fi if [[ -z $2 ]]; then Question_ouinon "Souhaitez-vous supprimer la BDD associé à $1 ?";fi

View File

@ -2,6 +2,7 @@
LoadModule rewrite_module modules/mod_rewrite.so LoadModule rewrite_module modules/mod_rewrite.so
ServerName nineapache.local ServerName nineapache.local
# Options Proxy
ProxyRequests Off ProxyRequests Off
ProxyPreserveHost On ProxyPreserveHost On
@ -9,14 +10,20 @@ ProxyPreserveHost On
Require all granted Require all granted
</Proxy> </Proxy>
RequestHeader set X-Forwarded-Host "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-Server "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-For "%{REMOTE_ADDR}s"
RequestHeader set Host "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-Proto "http"
# Services Outils
ProxyPass /auth http://keycloak:8999/auth retry=0 keepalive=On ProxyPass /auth http://keycloak:8999/auth retry=0 keepalive=On
ProxyPassReverse /auth http://keycloak:8999/auth retry=0 ProxyPassReverse /auth http://keycloak:8999/auth retry=0
ProxyPass /ninegate http://ninegate/ninegate retry=0 keepalive=On ProxyPass /minio http://minio:9001 retry=0 keepalive=On
ProxyPassReverse /ninegate http://ninegate/ninegate retry=0 ProxyPassReverse /minio http://minio:9001 retry=0
ProxyPass /wssninegate ws://ninegate/wssninegate retry=0 keepalive=On
ProxyPassReverse /wssninegate ws://ninegate/wssninegate retry=0
# Services Applicatif
ProxyPass /nextcloud http://nextcloud retry=0 keepalive=On ProxyPass /nextcloud http://nextcloud retry=0 keepalive=On
ProxyPassReverse /nextcloud http://nextcloud retry=0 ProxyPassReverse /nextcloud http://nextcloud retry=0
@ -25,21 +32,25 @@ ProxyPassReverse /nineboard http://nineboard/nineboard retry=0
ProxyPass /wssnineboard ws://nineboard/wssnineboard retry=0 keepalive=On ProxyPass /wssnineboard ws://nineboard/wssnineboard retry=0 keepalive=On
ProxyPassReverse /wssnineboard ws://nineboard/wssnineboard retry=0 ProxyPassReverse /wssnineboard ws://nineboard/wssnineboard retry=0
ProxyPass /ninegate http://ninegate/ninegate retry=0 keepalive=On
ProxyPassReverse /ninegate http://ninegate/ninegate retry=0
ProxyPass /wssninegate ws://ninegate/wssninegate retry=0 keepalive=On
ProxyPassReverse /wssninegate ws://ninegate/wssninegate retry=0
ProxyPass /wiki http://wiki retry=0 keepalive=On
ProxyPassReverse /wiki http://wiki retry=0
ProxyPass /wordpress http://wordpress/wordpress retry=0 keepalive=On ProxyPass /wordpress http://wordpress/wordpress retry=0 keepalive=On
ProxyPassReverse /wordpress http://wordpress/wordpress retry=0 ProxyPassReverse /wordpress http://wordpress/wordpress retry=0
# Services Développeur
ProxyPass /adminer http://adminer:8080 retry=0 keepalive=On ProxyPass /adminer http://adminer:8080 retry=0 keepalive=On
ProxyPassReverse /adminer http://adminer:8080 retry=0 ProxyPassReverse /adminer http://adminer:8080 retry=0
ProxyPass /phpldapadmin http://phpldapadmin/phpldapadmin retry=0 keepalive=On ProxyPass /phpldapadmin http://phpldapadmin/phpldapadmin retry=0 keepalive=On
ProxyPassReverse /phpldapadmin http://phpldapadmin/phpldapadmin retry=0 ProxyPassReverse /phpldapadmin http://phpldapadmin/phpldapadmin retry=0
RequestHeader set X-Forwarded-Host "%{HTTP_HOST}s" # Page interne au proxy
RequestHeader set X-Forwarded-Server "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-For "%{REMOTE_ADDR}s"
RequestHeader set Host "%{HTTP_HOST}s"
RequestHeader set X-Forwarded-Proto "http"
DocumentRoot "/app/public" DocumentRoot "/app/public"
<Directory "/app/public"> <Directory "/app/public">
Options Indexes FollowSymLinks Options Indexes FollowSymLinks

View File

@ -0,0 +1,20 @@
port: 3000
bindIP: 0.0.0.0
db:
type: $(DB_TYPE)
host: "$(DB_HOST)"
port: $(DB_PORT)
user: "$(DB_USER)"
pass: "$(DB_PASS)"
db: $(DB_NAME)
storage: $(DB_FILEPATH)
ssl: $(DB_SSL)
ssl:
enabled: $(SSL_ACTIVE)
port: 3443
provider: letsencrypt
domain: $(LETSENCRYPT_DOMAIN)
subscriberEmail: $(LETSENCRYPT_EMAIL)
logLevel: $(LOG_LEVEL:info)
logFormat: $(LOG_FORMAT:default)
ha: $(HA_ACTIVE)