Adding upstream version 20241201.
Signed-off-by: Daniel Baumann <daniel@debian.org>
56
plugins/55/addnewpage.mk
Normal file
|
@ -0,0 +1,56 @@
|
|||
# Progress Linux: dokuwiki-plugins-extra
|
||||
|
||||
# Copyright (C) 2024 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0+
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# Build-Depends:
|
||||
# none
|
||||
|
||||
SHELL := sh -e
|
||||
|
||||
PLUGIN := addnewpage
|
||||
|
||||
all:
|
||||
|
||||
test:
|
||||
|
||||
build:
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
cp -a $(PLUGIN) $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
|
||||
# removing unused files
|
||||
rm -f $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/README*
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/.git*
|
||||
|
||||
rm -f $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/.mailmap
|
||||
|
||||
uninstall:
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)
|
||||
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
||||
|
||||
clean:
|
||||
|
||||
distclean:
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
upstream:
|
||||
rm -rf $(PLUGIN)
|
||||
git clone https://github.com/dregad/dokuwiki-plugin-addnewpage $(PLUGIN)
|
||||
rm -rf $(PLUGIN)/.git
|
2
plugins/55/addnewpage/.gitattributes
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
3
plugins/55/addnewpage/.mailmap
Normal file
|
@ -0,0 +1,3 @@
|
|||
Robert McLeod <hamstar@telescum.co.nz>
|
||||
Michael Kraemer <michael.kraemer@gmail.com>
|
||||
Michael Kraemer <michael.kraemer@gmail.com> <michael@krmr.org>
|
48
plugins/55/addnewpage/README.md
Normal file
|
@ -0,0 +1,48 @@
|
|||
# Add New Page Plugin for DokuWiki
|
||||
|
||||
Copyright (c) 2006 Benjamin Santalucia <ben@santalucia.me>
|
||||
Copyright (c) 2013 Sam Wilson <sam@samwilson.id.au>
|
||||
Copyright (c) 2023 Damien Regad <dregad@mantisbt.org>
|
||||
|
||||
The plugin lets users put *add new page* forms within pages, with optional namespace selection.
|
||||
|
||||
## License
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the
|
||||
[GNU General Public License, version 2](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)
|
||||
or later.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
## Installation and Configuration
|
||||
|
||||
Please refer to
|
||||
[the plugin's wiki page](https://www.dokuwiki.org/plugin:addnewpage)
|
||||
for information on how to install, configure and use this plugin in DokuWiki.
|
||||
|
||||
|
||||
## Support
|
||||
|
||||
Source code and support for this plugin can be found at
|
||||
<https://github.com/dregad/dokuwiki-plugin-addnewpage>
|
||||
|
||||
## Credits
|
||||
|
||||
The plugin was originally written by [Benjamin Santalucia](https://github.com/ben8p) (aka iDo) in 2006. It was forked after the 2009-02-14 release of Dokuwiki, and moved to GitHub by [Robert McLeod](https://github.com/hamstar) in 2012.
|
||||
Refer to the [Legacy Releases section](https://www.dokuwiki.org/plugin:addnewpage#legacy_releases) in the plugin's home page for details on what happened in those early, pre-GitHub years.
|
||||
|
||||
In 2013, [Sam Wilson](https://github.com/samwilson) picked up the plugin's maintenance and actively supported it until he stopped using DokuWiki at the end of 2016.
|
||||
During this time, he merged several improvements and fixes contributed by these fine people:
|
||||
|
||||
- [Michael Braun](https://github.com/michael-dev)
|
||||
- [Róbert Toth](https://github.com/FurloSK)
|
||||
- [Gerrit Uitslag](https://github.com/klap-in) added support for newpagetemplate plugin in 2014
|
||||
- [Albert Chern](https://github.com/achern), disabling of restricted parent namespaces in 2015
|
||||
|
||||
In May 2023, [Damien Regad](https://github.com/dregad) decided to take over the plugin's maintenance.
|
||||
|
||||
Thanks to [all the people who contributed](https://github.com/dregad/dokuwiki-plugin-addnewpage/graphs/contributors) to this plugin over the years.
|
7
plugins/55/addnewpage/conf/default.php
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?php
|
||||
$conf['addpage_exclude'] = "wiki;playground";
|
||||
$conf['addpage_showroot'] = 1;
|
||||
$conf['addpage_hide'] = 1;
|
||||
$conf['addpage_hideACL'] = 0;
|
||||
$conf['addpage_autopage'] = 0;
|
||||
|
6
plugins/55/addnewpage/conf/metadata.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
$meta['addpage_exclude'] = array('string');
|
||||
$meta['addpage_showroot'] = array('onoff');
|
||||
$meta['addpage_hide'] = array('onoff');
|
||||
$meta['addpage_hideACL'] = array('onoff');
|
||||
$meta['addpage_autopage'] = array('onoff');
|
10
plugins/55/addnewpage/lang/ar/lang.php
Executable file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Ali Almlfy <Almlfy@hotmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'الجذر';
|
||||
$lang['okbutton'] = 'أضف صفحة';
|
||||
$lang['nooption'] = 'لا يسمح لك إضافة صفحات';
|
11
plugins/55/addnewpage/lang/ar/settings.php
Executable file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Ali Almlfy <Almlfy@hotmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'النطقات المسثناة (يفصل بينها بـ ;)';
|
||||
$lang['addpage_showroot'] = 'اعرض نطاق الجذر';
|
||||
$lang['addpage_hide'] = 'عند استعمال صيغة {{صفحة جديدة>[ns]}}: أخفي اختيار تسمية النطاق (وإلا فإنه سيظهر النطاق الفرعية)';
|
||||
$lang['addpage_hideACL'] = 'اخفاء {{صفحة جديد}} إن لم يكن للمستخدم الحق في إضافة صفحات (وإلا فإنها ستظهر)';
|
10
plugins/55/addnewpage/lang/bg/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Neli Dimitrova <neli.dimitrova.office@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Основно именно пространство';
|
||||
$lang['okbutton'] = 'Добави страница';
|
||||
$lang['nooption'] = 'Нямате право да създавате страница тук';
|
11
plugins/55/addnewpage/lang/bg/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Neli Dimitrova <neli.dimitrova.office@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Списък с изключени именни пространства (разделени със знак ;)';
|
||||
$lang['addpage_showroot'] = 'Покажи основното именно пространство';
|
||||
$lang['addpage_hide'] = 'Когато се използва синтаксиса {{NEWPAGE>[ns]}}: Скрий избора на именно пространство (ако не е избрано: покажи само дъщерните именни пространства)';
|
||||
$lang['addpage_hideACL'] = 'Скрий {{NEWPAGE}}, ако потребителят няма права да добавя страници (покажи съобщение, ако не е избрано)';
|
8
plugins/55/addnewpage/lang/ca/lang.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
/*
|
||||
* Catalan language file
|
||||
*/
|
||||
$lang['namespaceRoot'] = "Arrel";
|
||||
$lang['okbutton'] = "Crear";
|
||||
$lang['nooption'] = "No teniu permisos suficients per afegir una pàgina";
|
10
plugins/55/addnewpage/lang/ca/settings.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* Catalan language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "espais de nom a excloure (separats par un ;)";
|
||||
$lang['addpage_showroot'] = "Mostrar l'espai de nom arrel";
|
||||
$lang['addpage_hide'] = "Quan feu servir la sintaxi {{NEWPAGE>[ns]}}: Oculta la selecció d'espais de nom (desmarcat: només mostra els subespais de nom)";
|
||||
$lang['addpage_hideACL'] = "Si desmarcat, mostra un missatge quan l'usuari no té permisos suficients per crear una pàgina. Si no, occulta {{NEWPAGE}}";
|
10
plugins/55/addnewpage/lang/ckb/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author qezwan <qezwan@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'ڕەگ';
|
||||
$lang['okbutton'] = 'زیادکردنی لاپەڕە';
|
||||
$lang['nooption'] = 'تۆ ڕێگەت پێنەدراوە لاپەڕەزیاد بکەیت';
|
11
plugins/55/addnewpage/lang/ckb/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author qezwan <qezwan@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'بۆشایی ناوی بەدەرکراو (جیاکراونەتەوە لەگەڵ ;)';
|
||||
$lang['addpage_showroot'] = 'بۆشایی ناوی ڕەگ نیشان بدە';
|
||||
$lang['addpage_hide'] = 'کاتێک تۆ {{NEWPAGE>[ns]}} ڕستەسازی بەکاردێنیت: شاردنەوەی دیاریکردنی بۆشایی ناو (نەپشکندراوە: تەنها ژێربۆشایی پیشان بدە)';
|
||||
$lang['addpage_hideACL'] = 'شاردنەوە {{NEWPAGE}} ئەگەر بەکارهێنەر مافی ئەوەی نییە لاپەڕەزیاد بکات (نیشاندانی پەیام ئەگەر نەپشکنرابێت)';
|
10
plugins/55/addnewpage/lang/cs/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Jaroslav Lichtblau <jlichtblau@seznam.cz>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Kořen';
|
||||
$lang['okbutton'] = 'Přidat stránku';
|
||||
$lang['nooption'] = 'Nejste oprávněni přidávat stránky';
|
11
plugins/55/addnewpage/lang/cs/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Jaroslav Lichtblau <jlichtblau@seznam.cz>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Vyloučit jmenné prostory (oddělené středníkem ;)';
|
||||
$lang['addpage_showroot'] = 'Zobrazit kořenový jmenný prostor';
|
||||
$lang['addpage_hide'] = 'Pokud použijete {{NEWPAGE>[ns]}} syntax: Skrýt výběr jmenného prostoru (nezaškrtnuto: zobrazit pouze jmenné podprostory)';
|
||||
$lang['addpage_hideACL'] = 'Skrýt {{NEWPAGE}} pokud uživatel nemá práva pro přidávání stránek (nezaškrtnuto: zobrazit zprávu)';
|
10
plugins/55/addnewpage/lang/da/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Soren Birk <soer9648@eucl.dk>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Rod';
|
||||
$lang['okbutton'] = 'Tilføj side';
|
||||
$lang['nooption'] = 'Du har ikke tilladelse til at tilføje sider';
|
11
plugins/55/addnewpage/lang/da/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Soren Birk <soer9648@eucl.dk>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Ekskluderet navnerum (separeret med ;)';
|
||||
$lang['addpage_showroot'] = 'Vis rod-navnerum';
|
||||
$lang['addpage_hide'] = 'Når du benytter {{NEWPAGE>[ns]}} syntaks: Skjul valgte navnerum (umarkeret: vis kun under-navnerum)';
|
||||
$lang['addpage_hideACL'] = 'Skjul {{NEWPAGE}} hvis brugeren ikke har rettigheder til at tilføje sider (vis meddelelse hvis umarkeret)';
|
12
plugins/55/addnewpage/lang/de-informal/lang.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author MaWi <drmaxxis@gmail.com>
|
||||
* @author Michael <michael.kraemer@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Wurzel';
|
||||
$lang['name'] = 'Seiten Name';
|
||||
$lang['okbutton'] = 'Seite hinzufügen';
|
||||
$lang['nooption'] = 'Du besitzt nicht die Benutzerrechte um Seiten hinzuzufügen.';
|
14
plugins/55/addnewpage/lang/de-informal/settings.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author MaWi <drmaxxis@gmail.com>
|
||||
* @author Michael <michael.kraemer@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Namespaces ausschließen (getrennt mit ; )';
|
||||
$lang['addpage_showroot'] = 'Wurzel-Namespace anzeigen';
|
||||
$lang['addpage_hide'] = '{{NEWPAGE>[ns]}} Syntax: Ausgewählt, diese Namespace-Auswahl verbergen. Nicht ausgewählt, nur diese Namespace-Auswahl anzeigen.';
|
||||
$lang['addpage_hideACL'] = 'Verberge {{NEWPAGE}} wenn ein Benutzer keine Berechtigung hat Seiten hinzuzufügen
|
||||
Ausgewählt: Anzeige wird verborgen
|
||||
Nicht ausgewählt: es wird eine Fehlermeldung ausgegeben';
|
11
plugins/55/addnewpage/lang/de/lang.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Joerg <scooter22@gmx.de>
|
||||
* @author Michael <michael@krmr.org>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Wurzel';
|
||||
$lang['okbutton'] = 'Seite hinzufügen';
|
||||
$lang['nooption'] = 'Du besitzt nicht die Benutzerrechte um Seiten hinzuzufügen.';
|
13
plugins/55/addnewpage/lang/de/settings.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Joerg <scooter22@gmx.de>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Namespaces ausschließen (getrennt mit ; )';
|
||||
$lang['addpage_showroot'] = 'Wurzel-Namespace anzeigen';
|
||||
$lang['addpage_hide'] = '{{NEWPAGE>[ns]}} Syntax: Ausgewählt, diese Namespace-Auswahl verbergen. Nicht ausgewählt, nur diese Namespace-Auswahl anzeigen.';
|
||||
$lang['addpage_hideACL'] = 'Verberge {{NEWPAGE}} wenn ein Benutzer keine Berechtigung hat Seiten hinzuzufügen
|
||||
Ausgewählt: Anzeige wird verborgen
|
||||
Nicht ausgewählt: es wird eine Fehlermeldung ausgegeben';
|
9
plugins/55/addnewpage/lang/en/lang.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
/*
|
||||
* English language file
|
||||
*/
|
||||
$lang['namespaceRoot'] = "Root";
|
||||
$lang['name'] = "Page name";
|
||||
$lang['okbutton'] = "Add page";
|
||||
$lang['nooption'] = "You are not allowed to add pages";
|
||||
//Setup VIM: ex: et ts=2 enc=utf-8 :
|
11
plugins/55/addnewpage/lang/en/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* English language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "Excluded namespaces (separated with ;)";
|
||||
$lang['addpage_showroot'] = "Show root namespace";
|
||||
$lang['addpage_hide'] = "When you use {{NEWPAGE>[ns]}} syntax: Hide namespace selection (unchecked: show only subnamespaces)";
|
||||
$lang['addpage_hideACL'] = "Hide {{NEWPAGE}} if user does not have rights to add pages (show message if unchecked)";
|
||||
$lang['addpage_autopage'] = "Don't show the input box, the preconfigured namespace is treated as a full page ID. (makes sense with date placeholders)";
|
10
plugins/55/addnewpage/lang/eo/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Robert Bogenschneider <bogi@uea.org>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Bazo';
|
||||
$lang['okbutton'] = 'Aldoni paĝon';
|
||||
$lang['nooption'] = 'Vi ne rajtas aldoni paĝojn';
|
11
plugins/55/addnewpage/lang/eo/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Robert Bogenschneider <bogi@uea.org>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Ekskludi nomspacojn (disigitaj per ;)';
|
||||
$lang['addpage_showroot'] = 'Montri nomspacon';
|
||||
$lang['addpage_hide'] = 'Se vi uzas {{NEWPAGE>[ns]}}-sintakson: Ĉu kaŝi la nomspac-selekton? (malplena: montri nur subnomspacojn)';
|
||||
$lang['addpage_hideACL'] = 'Kaŝi {{NEWPAGE}} se uzanto ne rajtas aldoni paĝojn (montri mesaĝon, se malplena)';
|
8
plugins/55/addnewpage/lang/es/lang.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
/*
|
||||
* Spanish language file (Paraguay)
|
||||
*/
|
||||
$lang['namespaceRoot'] = "Raiz";
|
||||
$lang['okbutton'] = "Agregar pagina";
|
||||
$lang['nooption'] = "Ud. no tiene privilegios para crear la pagina";
|
||||
//Setup VIM: ex: et ts=2 enc=utf-8 :
|
10
plugins/55/addnewpage/lang/es/settings.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* Spanish language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "excluir directorio(namespace) separados por punto y coma (;)";
|
||||
$lang['addpage_showroot'] = "Mostrar directorio(namespace) raiz";
|
||||
$lang['addpage_hide'] = "cuando se usa la sintaxis {{NEWPAGE>[dir]}}: se oculta el selector de directorio (desmarcado: muestra solo sub-directorios (sub-namespaces))";
|
||||
$lang['addpage_hideACL'] = "si esta desmarcado, muesta un mensaje de error de privilegios. Si el usuario no tiene permiso de crear una pagina, simplemente se oculta el codigo {{NEWPAGE}}";
|
10
plugins/55/addnewpage/lang/fa/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Sam01 <m.sajad079@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'ریشه';
|
||||
$lang['okbutton'] = 'اضافهکردن صفحه';
|
||||
$lang['nooption'] = 'شما امکان اضافه کردن صفحهها را ندارید';
|
12
plugins/55/addnewpage/lang/fa/settings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Sam01 <m.sajad079@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'حذف فضاهای نام (جدا کردن از هم با ;)';
|
||||
$lang['addpage_showroot'] = 'نمایش فضاینام ریشه';
|
||||
$lang['addpage_hide'] = 'زمانی که استفاده میکنید از {{NEWPAGE>[ns]}} نحو: مخفی سازی فضاینام انتخابی
|
||||
(تیک: نمایش تمام فضاهای زیر نام)';
|
||||
$lang['addpage_hideACL'] = 'مخفی کردن {{NEWPAGE}} اگر کاربران';
|
9
plugins/55/addnewpage/lang/fr/lang.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
/*
|
||||
* French language file
|
||||
*/
|
||||
$lang['namespaceRoot'] = "Racine";
|
||||
$lang['name'] = "Nom de la page";
|
||||
$lang['okbutton'] = "Créer";
|
||||
$lang['nooption'] = "Vous n'avez pas les droits pour ajouter une page";
|
11
plugins/55/addnewpage/lang/fr/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* French language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "Catégories à exclure (séparées par un ';')";
|
||||
$lang['addpage_showroot'] = "Afficher la catégorie racine";
|
||||
$lang['addpage_hide'] = "Quand vous utlisez la syntaxe {{NEWPAGE>[ns]}} : cache la selection de catégorie (décoché: affiche uniquement les sous-catégories)";
|
||||
$lang['addpage_hideACL'] = "Si non cochée, affiche un message lorsque l'utilisateur n'a pas les droits d'ajout de page. Sinon, cache simplement {{NEWPAGE}}";
|
||||
$lang['addpage_autopage'] = "Ne pas afficher le champ de saisie; la catégorie préconfigurée est traitée comme un identifiant de page complet (utile avec des attributs de date)";
|
10
plugins/55/addnewpage/lang/hu/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Fekete Ádám Zsolt <fadam@egbcsoport.hu>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Kiindulónévtér';
|
||||
$lang['okbutton'] = 'Oldal hozzáadása';
|
||||
$lang['nooption'] = 'Nincs jogosultságod oldal létrehozásához';
|
11
plugins/55/addnewpage/lang/hu/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Fekete Ádám Zsolt <fadam@egbcsoport.hu>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Elrejtett névterek (pontosvesszővel elválasztva)';
|
||||
$lang['addpage_showroot'] = 'Kiindulónévtér mutatása';
|
||||
$lang['addpage_hide'] = 'A {{NEWPAGE>[ns]}} szintaxis használatakor: Névtérválasztó lista elrejtése (ha nincs bejelölve: mutatja az alnévtereket)';
|
||||
$lang['addpage_hideACL'] = 'A {{NEWPAGE}} elrejtése ha a felhasználónak nincs jogosultsága oldal létrehozásához (ha nincs bejelölve, egy üzenet fog megjelenni)';
|
11
plugins/55/addnewpage/lang/it/lang.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Daniele Savasta <danielesavasta@tiscali.it>
|
||||
* @author Mirko <malisan.mirko@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Root';
|
||||
$lang['okbutton'] = 'Aggiungi Pagina';
|
||||
$lang['nooption'] = 'Non sei autorizzato ad aggiungere nuove pagine';
|
8
plugins/55/addnewpage/lang/it/settings.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Mirko <malisan.mirko@gmail.com>
|
||||
*/
|
||||
$lang['addpage_hideACL'] = 'Nascondi {{NEWPAGE}} se l\'utente non è autorizzato ad aggiungere pagine(mostra il messaggio se non è selezionato)';
|
8
plugins/55/addnewpage/lang/ja/lang.php
Executable file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
/*
|
||||
Japanese language file
|
||||
*/
|
||||
$lang['namespaceRoot'] = "ルート";
|
||||
$lang['okbutton'] = "ページ追加";
|
||||
$lang['nooption'] = "ページの追加が許可されていません";
|
||||
//Setup VIM: ex: et ts=2 enc=utf-8 :
|
10
plugins/55/addnewpage/lang/ja/settings.php
Executable file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* Japanese language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "除外する名前空間(; 区切り)";
|
||||
$lang['addpage_showroot'] = "ルート名前空間を表示";
|
||||
$lang['addpage_hide'] = "{{NEWPAGE>[ns]}} 構文使用時: 名前空間選択リストを表示しない(チェックなし: 下位名前空間のみを表示)";
|
||||
$lang['addpage_hideACL'] = "ページ追加の権限を持たないユーザーに対しては {{NEWPAGE}} を表示しない(チェックなしの場合にはメッセージを表示)";
|
10
plugins/55/addnewpage/lang/ko/lang.php
Executable file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Myeongjin <aranet100@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = '루트';
|
||||
$lang['okbutton'] = '문서 추가';
|
||||
$lang['nooption'] = '문서를 추가할 권한이 없습니다';
|
11
plugins/55/addnewpage/lang/ko/settings.php
Executable file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Myeongjin <aranet100@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = '제외할 이름공간 (;로 구분)';
|
||||
$lang['addpage_showroot'] = '루트 이름공간 보이기';
|
||||
$lang['addpage_hide'] = '{{NEWPAGE>[ns]}} 구문을 사용할 때: 이름공간 선택을 숨기기 (체크하지 않음: 하위 이름공간만 보이기)';
|
||||
$lang['addpage_hideACL'] = '사용자가 문서를 추가할 권한이 없을 때 {{NEWPAGE}} 숨기기 (체크하지 않으면 메시지 보이기)';
|
10
plugins/55/addnewpage/lang/nl/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Hugo Smet <hugo.smet@scarlet.be>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Root';
|
||||
$lang['okbutton'] = 'Pagina toevoegen';
|
||||
$lang['nooption'] = 'U heeft geen rechten om pagina\'s toe te voegen';
|
11
plugins/55/addnewpage/lang/nl/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Hugo Smet <hugo.smet@scarlet.be>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Uitgesloten naamruimte\'s (gescheiden door ;)';
|
||||
$lang['addpage_showroot'] = 'Toon root naamruimte';
|
||||
$lang['addpage_hide'] = 'Bij gebruik van {{NEWPAGE>[ns]}} syntax: Verberg naamruimte selectie (niet aangevinkt: toon enkel sub naamruimte\'s)';
|
||||
$lang['addpage_hideACL'] = 'Verberg {{NEWPAGE}} wanneer de gebruiker geen rechten heeft om pagina\'s toe te voegen (toon melding wanneer niet aangevinkt)';
|
10
plugins/55/addnewpage/lang/no/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Arne Hanssen <arne.hanssen@getmail.no>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Rot';
|
||||
$lang['okbutton'] = 'Legg til ny side';
|
||||
$lang['nooption'] = 'Du har ikke tilgang til å legge til sider';
|
11
plugins/55/addnewpage/lang/no/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Arne Hanssen <arne.hanssen@getmail.no>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Utelatte navnerom (separert med ;)';
|
||||
$lang['addpage_showroot'] = 'Vis rot-navnerom';
|
||||
$lang['addpage_hide'] = 'Når du bruker {{NEWPAGE>[ns]}} syntaks: skjul valg av navnerom (ikke avhuket: vis bare undernavnerom)';
|
||||
$lang['addpage_hideACL'] = 'Skjul {NEWPAGE}} dersom bruker ikke har tilgang til å legge til sider (ikke avhuket: vis tilbakemelding) ';
|
8
plugins/55/addnewpage/lang/pl/lang.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
/*
|
||||
* polish language file
|
||||
*/
|
||||
$lang['namespaceRoot'] = "Główny";
|
||||
$lang['okbutton'] = "Dodaj stronę";
|
||||
$lang['nooption'] = "Nie masz uprawnień aby dodać nową stronę";
|
||||
//Setup VIM: ex: et ts=2 enc=utf-8 :
|
10
plugins/55/addnewpage/lang/pl/settings.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* Polish language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "Wykluczone nazwy (oddzielone średnikiem)";
|
||||
$lang['addpage_showroot'] = "Pokaż nazwę głównego katalogu";
|
||||
$lang['addpage_hide'] = "Kiedy używasz składni {{NEWPAGE>[nazwa]}}: Ukryj nazwę grupy (niezaznaczone: pokaż tylko podnazwy)";
|
||||
$lang['addpage_hideACL'] = "Ukryj {{NEWPAGE}} jeżeli użytkownicy nie posiadają uprawnień dodawania nowych stron (pokaż komunikat jeśli niezaznaczone)";
|
10
plugins/55/addnewpage/lang/pt-br/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Samory Pereira Santos <samory.santos@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Raiz';
|
||||
$lang['okbutton'] = 'Adicionar página';
|
||||
$lang['nooption'] = 'Você não tem permissão para adicionar páginas';
|
12
plugins/55/addnewpage/lang/pt-br/settings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Alexandre Belchior <alexbelchior@gmail.com>
|
||||
* @author Samory Pereira Santos <samory.santos@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Excluir namespaces (separar com ;)';
|
||||
$lang['addpage_showroot'] = 'Mostrar namespace raiz';
|
||||
$lang['addpage_hide'] = 'Quando você usa a sintax {{NEWPAGE>[ns]}} : Oculta a seleção do namespace (desmarcado: mostra apenas os subnamespaces)';
|
||||
$lang['addpage_hideACL'] = 'Ocultar {{NEWPAGE}} se o usuário não tiver direitos para adicionar páginas (mostre a mensagem se desmarcada)';
|
10
plugins/55/addnewpage/lang/pt/lang.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Alfredo Silva <alfredo.silva@sky.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Raiz';
|
||||
$lang['okbutton'] = 'Adicionar página';
|
||||
$lang['nooption'] = 'Não está autorizado para adicionar páginas';
|
11
plugins/55/addnewpage/lang/pt/settings.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Alfredo Silva <alfredo.silva@sky.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Espaços do nome excluídos (separados com ;)';
|
||||
$lang['addpage_showroot'] = 'Mostrar espaço do nome da raiz';
|
||||
$lang['addpage_hide'] = 'Quando utiliza a sintaxe {{NEWPAGE>[ns]}} : Ocultar a seleção do espaço do nome (desmarcado : mostrar apenas sub-espaço do nome)';
|
||||
$lang['addpage_hideACL'] = 'Ocultar {{NEWPAGE}} se o utilizador não possuir permissões para adicionar páginas (mostrar mensagem se desmarcado).';
|
11
plugins/55/addnewpage/lang/ru/lang.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author Aleksandr Selivanov <alexgearbox@yandex.ru>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Корневой уровень';
|
||||
$lang['name'] = 'Имя страницы';
|
||||
$lang['okbutton'] = 'Добавить страницу';
|
||||
$lang['nooption'] = 'Вы не можете добавлять страницы';
|
12
plugins/55/addnewpage/lang/ru/settings.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* @author serg <sergey_art82@inbox.ru>
|
||||
* @author Aleksandr Selivanov <alexgearbox@yandex.ru>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Исключаемые пространства имен (разделитель — точка с запятой)';
|
||||
$lang['addpage_showroot'] = 'Показать корневое пространство имён';
|
||||
$lang['addpage_hide'] = 'При использовании синтаксиса {{NEWPAGE>[ns]}} скрывать выбор пространства имён. (Если флажок снят, будут показываться только подпространства имён.)';
|
||||
$lang['addpage_hideACL'] = 'Скрыть {{NEWPAGE}}, если пользователь не имеет прав на добавление страниц. (Если флажок снят, будет отображаться сообщение.)';
|
9
plugins/55/addnewpage/lang/sv/lang.php
Executable file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* Swedish language file
|
||||
* Save file as UTF8.
|
||||
*/
|
||||
$lang['namespaceRoot'] = "Rot";
|
||||
$lang['okbutton'] = "Skapa sida";
|
||||
$lang['nooption'] = "Du har inte behörighet att skapa sidor";
|
10
plugins/55/addnewpage/lang/sv/settings.php
Executable file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* Swedish language file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "Exkluderade namnrymder (separera med ;)";
|
||||
$lang['addpage_showroot'] = "Visa rotrymd";
|
||||
$lang['addpage_hide'] = "När du använder {{NEWPAGE>[ns]}} syntax: Dölj val av namnrymd (ej ikryssad: visa bara undernamnrymder)";
|
||||
$lang['addpage_hideACL'] = "Dölj {{NEWPAGE}} om användaren inte har rättighet att skapa sidor (visa meddelande om ej ikryssad)";
|
12
plugins/55/addnewpage/lang/uk/lang.php
Executable file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* Ukrainian language file
|
||||
*
|
||||
* @author Олексій <alexey.furashev@gmail.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Кореневий простір імен';
|
||||
$lang['okbutton'] = 'Додати сторінку';
|
||||
$lang['nooption'] = 'Ви не можете додавати сторінки';
|
13
plugins/55/addnewpage/lang/uk/settings.php
Executable file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* USE : UTF8
|
||||
* Ukrainian language file
|
||||
*
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Виключені простори імен (розділені ;)';
|
||||
$lang['addpage_showroot'] = 'Відображати кореневий простір імен';
|
||||
$lang['addpage_hide'] = 'При застосуванні {{NEWPAGE>[ns]}} сховати вибір простору імен (якщо вибрано цей пункт - відображати тільки підпростір імен)';
|
||||
$lang['addpage_hideACL'] = 'Сховати {{NEWPAGE}}, якщо користувач не має прав додавати сторінки (відображати повідомлення, якщо цей пункт не вибрано)';
|
11
plugins/55/addnewpage/lang/vi/lang.php
Executable file
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* Vietnamese language file
|
||||
*
|
||||
*/
|
||||
$lang['namespaceRoot'] = 'Gốc';
|
||||
$lang['okbutton'] = 'Tạo trang mới';
|
||||
$lang['nooption'] = 'Bạn không được phép tạo trang mới';
|
14
plugins/55/addnewpage/lang/vi/settings.php
Executable file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* USE : UTF8
|
||||
* Vietnamese language file
|
||||
*
|
||||
* @author Thien Hau <thienhausoftware@gmail.com>
|
||||
*/
|
||||
$lang['addpage_exclude'] = 'Trừ không gian tên (ngăn cách bằng dấu ;)';
|
||||
$lang['addpage_showroot'] = 'Hiển thị không gian tên gốc';
|
||||
$lang['addpage_hide'] = 'Khi bạn chọn syntax {{NEWPAGE>[ns]}}: Ẩn khả năng lựa chọn không gian tên (không chọn: chỉ hiển thị không gian tên con)';
|
||||
$lang['addpage_hideACL'] = 'Ẩn {{NEWPAGE}} nếu người dùng không được phép tạo trang mới (hiển thị tin nhắn nếu không chọn)';
|
8
plugins/55/addnewpage/lang/zh-tw/lang.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
/*
|
||||
Traditional Chinese language file
|
||||
*/
|
||||
$lang['namespaceRoot']="最上層(Root)";
|
||||
$lang['okbutton'] ="新增頁面";
|
||||
$lang['nooption'] ="你沒有權限執行新增頁面的動作";
|
||||
//Setup VIM: ex: et ts=2 enc=utf-8 :
|
10
plugins/55/addnewpage/lang/zh-tw/settings.php
Normal file
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
/*USE : UTF8*/
|
||||
|
||||
/*
|
||||
* Traditional Chinese file
|
||||
*/
|
||||
$lang['addpage_exclude'] = "排除哪些命名空間(namespace), 使用 ; 來區分多個命名空間(namespace)";
|
||||
$lang['addpage_showroot'] = "顯示最上層(Root)命名空間(namespace)";
|
||||
$lang['addpage_hide'] = "使用 {{NEWPAGE>[ns]}} 語法時不要顯示出命名空間(namespace)的選項, 沒有打勾就會列出指定命名空間(namespace)底下所有的子命名空間(subnamespace)項目";
|
||||
$lang['addpage_hideACL'] = "沒有打勾 : 表示當使用者沒有新增頁面權限時就顯示沒有權限的訊息而不會顯示出新增頁面的輸入欄.";
|
13
plugins/55/addnewpage/lang/zh/lang.php
Executable file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (https://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* Chinese(Simplified) language file
|
||||
*
|
||||
* @author 小命Leaflet <2532846822@qq.com>
|
||||
*/
|
||||
$lang['namespaceRoot'] = '根部命名空间';
|
||||
$lang['name'] = '页面名称';
|
||||
$lang['okbutton'] = '增加页面';
|
||||
$lang['nooption'] = '抱歉,您没有权限增加页面';
|
13
plugins/55/addnewpage/lang/zh/settings.php
Executable file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @license GPL 2 (https://www.gnu.org/licenses/gpl.html)
|
||||
*
|
||||
* USE : UTF8
|
||||
* Chinese (Simplified) language file
|
||||
*
|
||||
*/
|
||||
$lang['addpage_exclude'] = '排除的命名空间(使用;来分隔命名空间)';
|
||||
$lang['addpage_showroot'] = '显示根部命名空间';
|
||||
$lang['addpage_hide'] = '在使用 {{NEWPAGE>[ns]}} 时不显示命名空间的选择(未勾选则仅显示子命名空间)';
|
||||
$lang['addpage_hideACL'] = '用户没有新增页面权限时隐藏{{NEWPAGE}}(若未勾选则显示信息)';
|
8
plugins/55/addnewpage/plugin.info.txt
Executable file
|
@ -0,0 +1,8 @@
|
|||
# General Plugin Info
|
||||
base addnewpage
|
||||
author Damien Regad, Benjamin Santalucia, Sam Wilson and other contributors
|
||||
email dregad@mantisbt.org
|
||||
date 2024-11-16
|
||||
name Add New Page plugin
|
||||
desc Adds a "new page form" to any wiki page.
|
||||
url https://www.dokuwiki.org/plugin:addnewpage
|
35
plugins/55/addnewpage/script.js
Executable file
|
@ -0,0 +1,35 @@
|
|||
jQuery(function () {
|
||||
jQuery(".addnewpage form").each(function () {
|
||||
var $form = jQuery(this);
|
||||
var $ns = $form.find("[name='np_cat']");
|
||||
var $title = $form.find("input[name='title']");
|
||||
var $id = $form.find("input[name='id']");
|
||||
var $submit = $form.find(':submit');
|
||||
|
||||
console.log($ns);
|
||||
// disable submit unless something is in input or input is disabled
|
||||
if ($title.attr('type') === 'text') {
|
||||
$submit.attr('disabled', 'disabled');
|
||||
$title.on('input', function () {
|
||||
if ($title.val().length > 0) {
|
||||
$submit.removeAttr('disabled');
|
||||
} else {
|
||||
$submit.attr('disabled', 'disabled');
|
||||
}
|
||||
});
|
||||
}
|
||||
console.log($ns);
|
||||
// Change the form's page-ID field on submit
|
||||
$form.submit(function () {
|
||||
// Build the new page ID and save in hidden form field
|
||||
var id = $ns.val().replace('@INPUT@', $title.val());
|
||||
$id.val(id);
|
||||
// Clean up the form vars, just to make the resultant URL a bit nicer
|
||||
$ns.prop("disabled", true);
|
||||
$title.prop("disabled", true);
|
||||
|
||||
return true;
|
||||
});
|
||||
|
||||
});
|
||||
});
|
5
plugins/55/addnewpage/style.less
Normal file
|
@ -0,0 +1,5 @@
|
|||
div.addnewpage {
|
||||
select, input {
|
||||
margin-right: 3px;
|
||||
}
|
||||
}
|
423
plugins/55/addnewpage/syntax.php
Normal file
|
@ -0,0 +1,423 @@
|
|||
<?php
|
||||
/**
|
||||
* Add-New-Page Plugin: a simple form for adding new pages.
|
||||
*
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author iDO <ido@idotech.info>
|
||||
* @author Sam Wilson <sam@samwilson.id.au>
|
||||
*
|
||||
* @noinspection PhpUnused
|
||||
* @noinspection PhpMissingParamTypeInspection, PhpMissingReturnTypeInspection
|
||||
*/
|
||||
|
||||
use dokuwiki\Extension\SyntaxPlugin;
|
||||
use dokuwiki\File\PageResolver;
|
||||
|
||||
// must be run within Dokuwiki
|
||||
if(!defined('DOKU_INC')) die();
|
||||
|
||||
class syntax_plugin_addnewpage extends SyntaxPlugin {
|
||||
|
||||
/** @var array the parsed options */
|
||||
protected $options;
|
||||
|
||||
/**
|
||||
* Syntax Type
|
||||
*/
|
||||
public function getType() {
|
||||
return 'substition';
|
||||
}
|
||||
|
||||
/**
|
||||
* Paragraph Type
|
||||
*/
|
||||
public function getPType() {
|
||||
return 'block';
|
||||
}
|
||||
|
||||
/**
|
||||
* @return int
|
||||
*/
|
||||
public function getSort() {
|
||||
return 199;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $mode
|
||||
*/
|
||||
public function connectTo($mode) {
|
||||
$this->Lexer->addSpecialPattern('\{\{NEWPAGE[^\}]*\}\}', $mode, 'plugin_addnewpage');
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler to prepare matched data for the rendering process.
|
||||
*
|
||||
* Handled syntax options:
|
||||
* - {{NEWPAGE}}
|
||||
* - {{NEWPAGE>your:namespace}}
|
||||
* - {{NEWPAGE>your:namespace:@INPUT@:start}}
|
||||
* - {{NEWPAGE>your:namespace:[date formats]}} {@see strftime()}
|
||||
* - {{NEWPAGE?config_overrides}}
|
||||
* - {{NEWPAGE?label=custom}}
|
||||
* - {{NEWPAGE#newtpl1,newtpl2}}
|
||||
* - {{NEWPAGE#newtpl1|Title1,newtpl2|Title1}}
|
||||
* - {{NEWPAGE>your:namespace#newtpl1|Title1,newtpl2|Title1}}
|
||||
* - {{NEWPAGE>your:namespace#newtpl1|Title1,newtpl2|Title1#@HI@,Howdy}}
|
||||
*
|
||||
* Refer to {@see https://www.dokuwiki.org/plugin:addnewpage} for details.
|
||||
*
|
||||
* @param string $match The text matched by the patterns
|
||||
* @param int $state The lexer state for the match
|
||||
* @param int $pos The character position of the matched text
|
||||
* @param Doku_Handler $handler The Doku_Handler object
|
||||
*
|
||||
* @return array Return an array with all data you want to use in render
|
||||
* @codingStandardsIgnoreStart
|
||||
*/
|
||||
public function handle($match, $state, $pos, Doku_Handler $handler) {
|
||||
/* @codingStandardsIgnoreEnd */
|
||||
$match = substr($match, 9, -2); // strip markup
|
||||
|
||||
$data = array(
|
||||
'namespace' => '',
|
||||
'newpagetemplates' => array(),
|
||||
'newpagevars' => '',
|
||||
'options' => array(
|
||||
'exclude' => $this->getConf('addpage_exclude'),
|
||||
'showroot' => $this->getConf('addpage_showroot'),
|
||||
'hide' => $this->getConf('addpage_hide'),
|
||||
'hideacl' => $this->getConf('addpage_hideACL'),
|
||||
'autopage' => $this->getConf('addpage_autopage'),
|
||||
'label' => 'okbutton',
|
||||
)
|
||||
);
|
||||
|
||||
if(preg_match('/>(.*?)(#|\?|$)/', $match, $m)) {
|
||||
$data['namespace'] = trim($m[1]);
|
||||
}
|
||||
|
||||
# Extract the newpagetemplate plugin parameters
|
||||
# - after the initial #: the template name
|
||||
# - after optional 2nd #: custom variable names
|
||||
if(preg_match('/#(.*?)(?:#(.*?))?(?:\?|$)/', $match, $m)) {
|
||||
$data['newpagetemplates'] = array_map('trim', explode(',', $m[1]));
|
||||
$data['newpagevars'] = trim($m[2] ?? '');
|
||||
}
|
||||
|
||||
if(preg_match('/\?(.*?)(#|$)/', $match, $m)) {
|
||||
$this->_parseOptions($m[1], $data['options']);
|
||||
}
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create the new-page form.
|
||||
*
|
||||
* @param $format string output format being rendered
|
||||
* @param $renderer Doku_Renderer the current renderer object
|
||||
* @param $data array data created by handler()
|
||||
* @return boolean rendered correctly?
|
||||
*/
|
||||
public function render($format, Doku_Renderer $renderer, $data) {
|
||||
global $lang;
|
||||
|
||||
// make options available in class
|
||||
$this->options = $data['options'];
|
||||
|
||||
if($format == 'xhtml') {
|
||||
$disablecache = false;
|
||||
$namespaceinput = $this->_htmlNamespaceInput($data['namespace'], $disablecache);
|
||||
if($namespaceinput === false) {
|
||||
if($this->options['hideacl']) {
|
||||
$renderer->doc .= '';
|
||||
} else {
|
||||
$renderer->doc .= $this->getLang('nooption');
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if($disablecache) $renderer->info['cache'] = false;
|
||||
|
||||
$newpagetemplateinput = $this->_htmlTemplateInput($data['newpagetemplates']);
|
||||
|
||||
$input = 'text';
|
||||
if($this->options['autopage']) $input = 'hidden';
|
||||
|
||||
// Button label. If given string is not localized, use it as-is
|
||||
$label = $this->getLang($this->options['label']);
|
||||
if (!$label) {
|
||||
$label = $this->options['label'];
|
||||
}
|
||||
|
||||
$form = '<div class="addnewpage"><p>'
|
||||
. '<form name="addnewpage" method="get" action="' . DOKU_BASE . DOKU_SCRIPT
|
||||
. '" accept-charset="' . $lang['encoding'] . '">'
|
||||
. $namespaceinput
|
||||
. '<input class="edit" type="' . $input . '" name="title" size="20" maxlength="255" tabindex="2" placeholder="'
|
||||
. $this->getLang('name') . '"/>'
|
||||
. $newpagetemplateinput
|
||||
. '<input type="hidden" name="newpagevars" value="' . $data['newpagevars'] . '"/>'
|
||||
. '<input type="hidden" name="do" value="edit" />'
|
||||
. '<input type="hidden" name="id" />'
|
||||
. '<input class="button" type="submit" value="' . $label . '" tabindex="4" />'
|
||||
. '</form>'
|
||||
. '</p></div>';
|
||||
|
||||
$renderer->doc .= $form;
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Overwrites the $options with the ones parsed from $optstr
|
||||
*
|
||||
* @param string $optstr
|
||||
* @param array $options
|
||||
* @author Andreas Gohr <gohr@cosmocode.de>
|
||||
*/
|
||||
protected function _parseOptions($optstr, &$options) {
|
||||
$opts = preg_split('/[,&]/', $optstr);
|
||||
|
||||
foreach($opts as $opt) {
|
||||
$opt_lower = strtolower(trim($opt));
|
||||
$val = true;
|
||||
// booleans can be negated with a no prefix
|
||||
if(substr($opt_lower, 0, 2) == 'no') {
|
||||
$opt_lower = substr($opt, 2);
|
||||
$val = false;
|
||||
}
|
||||
|
||||
// not a known option? might be a key=value pair
|
||||
if(!isset($options[$opt_lower])) {
|
||||
$split = array_map('trim', sexplode('=', $opt, 2));
|
||||
$opt_lower = strtolower($split[0]);
|
||||
$val = $split[1];
|
||||
}
|
||||
|
||||
// still unknown? skip it
|
||||
if(!isset($options[$opt_lower])) continue;
|
||||
|
||||
// overwrite the current value
|
||||
$options[$opt_lower] = $val;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse namespace request
|
||||
*
|
||||
* This creates the final ID to be created (still having an @INPUT@ variable
|
||||
* which is filled in via JavaScript)
|
||||
*
|
||||
* @author Samuele Tognini <samuele@cli.di.unipi.it>
|
||||
* @author Michael Braun <michael-dev@fami-braun.de>
|
||||
* @author Andreas Gohr <gohr@cosmocode.de>
|
||||
* @param string $ns The namespace as given in the syntax
|
||||
* @return string
|
||||
*/
|
||||
protected function _parseNS($ns) {
|
||||
global $INFO;
|
||||
|
||||
$selfid = $INFO['id'];
|
||||
$selfns = getNS($selfid);
|
||||
// replace the input variable with something unique that survives cleanID
|
||||
$keep = sha1(time());
|
||||
|
||||
// by default append the input to the namespace (except on autopage)
|
||||
if(strpos($ns, '@INPUT@') === false && !$this->options['autopage']) $ns .= ":@INPUT@";
|
||||
|
||||
// date replacements
|
||||
$ns = dformat(null, $ns);
|
||||
|
||||
// placeholders
|
||||
$replacements = array(
|
||||
'/\//' => ':', // forward slashes to colons
|
||||
'/@PAGE@/' => $selfid,
|
||||
'/@NS@/' => $selfns,
|
||||
'/^\.(:|\/|$)/' => "$selfns:",
|
||||
'/@INPUT@/' => $keep,
|
||||
);
|
||||
$ns = preg_replace(array_keys($replacements), array_values($replacements), $ns);
|
||||
|
||||
// clean up, then reinsert the input variable
|
||||
$ns = cleanID($ns);
|
||||
return str_replace($keep, '@INPUT@', $ns);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create the HTML Select element for namespace selection.
|
||||
*
|
||||
* @param string|false $dest_ns The destination namespace, or false if none provided.
|
||||
* @param bool $disablecache reference indicates if caching need to be disabled
|
||||
* @global string $ID The page ID
|
||||
* @return string Select element with appropriate NS selected.
|
||||
*/
|
||||
protected function _htmlNamespaceInput($dest_ns, &$disablecache) {
|
||||
global $ID;
|
||||
$disablecache = false;
|
||||
|
||||
// If a NS has been provided:
|
||||
// Whether to hide the NS selection (otherwise, show only subnamespaces).
|
||||
$hide = $this->options['hide'];
|
||||
|
||||
$parsed_dest_ns = $this->_parseNS($dest_ns);
|
||||
// Whether the user can create pages in the provided NS (or root, if no
|
||||
// destination NS has been set.
|
||||
$can_create = (auth_quickaclcheck($parsed_dest_ns . ":") >= AUTH_CREATE);
|
||||
|
||||
//namespace given, but hidden
|
||||
if($hide && !empty($dest_ns)) {
|
||||
if($can_create) {
|
||||
return '<input type="hidden" name="np_cat" id="np_cat" value="' . $parsed_dest_ns . '"/>';
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
//show select of given namespace
|
||||
$currentns = getNS($ID);
|
||||
|
||||
$ret = '<select class="edit" id="np_cat" name="np_cat" tabindex="1">';
|
||||
|
||||
// Whether the NS select element has any options
|
||||
$someopt = false;
|
||||
|
||||
// Show root namespace if requested and allowed
|
||||
if($this->options['showroot'] && $can_create) {
|
||||
if(empty($dest_ns)) {
|
||||
// If no namespace has been provided, add an option for the root NS.
|
||||
$ret .= '<option ' . (($currentns == '') ? 'selected ' : '') . ' value="">' . $this->getLang('namespaceRoot') . '</option>';
|
||||
} else {
|
||||
// If a namespace has been provided, add an option for it.
|
||||
$ret .= '<option ' . (($currentns == $dest_ns) ? 'selected ' : '') . ' value="' . formText($dest_ns) . '">' . formText($dest_ns) . '</option>';
|
||||
}
|
||||
$someopt = true;
|
||||
}
|
||||
|
||||
$subnamespaces = $this->_getNamespaceList($dest_ns);
|
||||
|
||||
// The top of this stack will always be the last printed ancestor namespace
|
||||
$ancestor_stack = array();
|
||||
if (!empty($dest_ns)) {
|
||||
$ancestor_stack[] = $dest_ns;
|
||||
}
|
||||
|
||||
foreach($subnamespaces as $ns) {
|
||||
|
||||
if(auth_quickaclcheck($ns . ":") < AUTH_CREATE) continue;
|
||||
|
||||
// Pop any elements off the stack that are not ancestors of the current namespace
|
||||
while(!empty($ancestor_stack) && strpos($ns, $ancestor_stack[count($ancestor_stack) - 1] . ':') !== 0) {
|
||||
array_pop($ancestor_stack);
|
||||
}
|
||||
|
||||
$nsparts = explode(':', $ns);
|
||||
$first_unprinted_depth = empty($ancestor_stack) ? 1 : (2 + substr_count($ancestor_stack[count($ancestor_stack) - 1], ':'));
|
||||
for($i = $first_unprinted_depth, $end = count($nsparts); $i <= $end; $i++) {
|
||||
$namespace = implode(':', array_slice($nsparts, 0, $i));
|
||||
$ancestor_stack[] = $namespace;
|
||||
$selectOptionText = str_repeat(' ', substr_count($namespace, ':')) . $nsparts[$i - 1];
|
||||
$ret .= '<option ' .
|
||||
(($currentns == $namespace) ? 'selected ' : '') .
|
||||
($i == $end ? ('value="' . $namespace . '">') : 'disabled>') .
|
||||
$selectOptionText .
|
||||
'</option>';
|
||||
}
|
||||
$someopt = true;
|
||||
$disablecache = true;
|
||||
}
|
||||
|
||||
$ret .= '</select>';
|
||||
|
||||
if($someopt) {
|
||||
return $ret;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Get a list of namespaces below the given namespace.
|
||||
* Recursively fetches subnamespaces.
|
||||
*
|
||||
* @param string $topns The top namespace
|
||||
* @return array Multi-dimensional array of all namespaces below $tns
|
||||
*/
|
||||
protected function _getNamespaceList($topns = '') {
|
||||
global $conf;
|
||||
|
||||
$topns = utf8_encodeFN(str_replace(':', '/', $topns));
|
||||
|
||||
$excludes = $this->options['exclude'];
|
||||
if($excludes == "") {
|
||||
$excludes = array();
|
||||
} else {
|
||||
$excludes = @explode(';', strtolower($excludes));
|
||||
}
|
||||
$searchdata = array();
|
||||
search($searchdata, $conf['datadir'], 'search_namespaces', array(), $topns);
|
||||
|
||||
$namespaces = array();
|
||||
foreach($searchdata as $ns) {
|
||||
foreach($excludes as $exclude) {
|
||||
if(!empty($exclude) && strpos($ns['id'], $exclude) === 0) {
|
||||
continue 2;
|
||||
}
|
||||
}
|
||||
$namespaces[] = $ns['id'];
|
||||
}
|
||||
|
||||
return $namespaces;
|
||||
}
|
||||
|
||||
/**
|
||||
* Create html for selection of namespace templates
|
||||
*
|
||||
* @param array $newpagetemplates array of namespace templates
|
||||
* @return string html of select or hidden input
|
||||
*/
|
||||
public function _htmlTemplateInput($newpagetemplates) {
|
||||
$cnt = count($newpagetemplates);
|
||||
if($cnt < 1 || $cnt == 1 && $newpagetemplates[0] == '') {
|
||||
$input = '';
|
||||
|
||||
} else {
|
||||
if($cnt == 1) {
|
||||
list($template,) = $this->_parseNSTemplatePage($newpagetemplates[0]);
|
||||
$input = '<input type="hidden" name="newpagetemplate" value="' . formText($template) . '" />';
|
||||
} else {
|
||||
$first = true;
|
||||
$input = '<select name="newpagetemplate" tabindex="3">';
|
||||
foreach($newpagetemplates as $template) {
|
||||
$p = ($first ? ' selected="selected"' : '');
|
||||
$first = false;
|
||||
|
||||
list($template, $name) = $this->_parseNSTemplatePage($template);
|
||||
$p .= ' value="' . formText($template) . '"';
|
||||
$input .= "<option $p>" . formText($name) . "</option>";
|
||||
}
|
||||
$input .= '</select>';
|
||||
}
|
||||
$input = DOKU_TAB . DOKU_TAB . $input . DOKU_LF;
|
||||
}
|
||||
return $input;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parses and resolves the namespace template page
|
||||
*
|
||||
* @param $nstemplate
|
||||
* @return array
|
||||
*/
|
||||
protected function _parseNSTemplatePage($nstemplate) {
|
||||
global $ID;
|
||||
|
||||
@list($template, $name) = explode('|', $nstemplate, 2);
|
||||
$template = (new PageResolver($ID))->resolveId($template);
|
||||
if (is_null($name)) $name = $template;
|
||||
|
||||
return array($template, $name);
|
||||
}
|
||||
|
||||
}
|
54
plugins/55/color.mk
Normal file
|
@ -0,0 +1,54 @@
|
|||
# Progress Linux: dokuwiki-plugins-extra
|
||||
|
||||
# Copyright (C) 2024 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0+
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# Build-Depends:
|
||||
# none
|
||||
|
||||
SHELL := sh -e
|
||||
|
||||
PLUGIN := color
|
||||
|
||||
all:
|
||||
|
||||
test:
|
||||
|
||||
build:
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
cp -a $(PLUGIN) $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
|
||||
# removing unused files
|
||||
rm -f $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/README*
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/.git*
|
||||
|
||||
uninstall:
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)
|
||||
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
||||
|
||||
clean:
|
||||
|
||||
distclean:
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
upstream:
|
||||
rm -rf $(PLUGIN)
|
||||
git clone https://github.com/hanche/dokuwiki_color_plugin $(PLUGIN)
|
||||
rm -rf $(PLUGIN)/.git
|
18
plugins/55/color/README.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
# color Plugin
|
||||
|
||||
This is a plugin for [dokuwiki](https://www.dokuwiki.org/start)..
|
||||
|
||||
See the plugin [homepage](https://www.dokuwiki.org/plugin:color) for detailed documentation. Here we provide a brief summary of the required syntax:
|
||||
|
||||
```
|
||||
<color ⟨fg color⟩[/⟨bg color⟩[/⟨ignored text⟩]]>⟨text⟩</color>
|
||||
<color ⟨fg color⟩:⟨bg color⟩[:⟨ignored text⟩]>⟨text⟩</color>
|
||||
```
|
||||
|
||||
- Square brackets indicates optional parts.
|
||||
|
||||
- `⟨fg color⟩` and `⟨bg color⟩` are CSS color specifications. Either one may be empty, in which case it is ignored.
|
||||
|
||||
- In the first syntax, the color specification(s) MUST NOT include a slash (`/`).
|
||||
- In the second syntax, the color specification(s) MUST NOT include a colon character (`:`). We do not know any legal CSS color specification that does include a colon, nor do we anticipate that one will appear in the future.
|
||||
- The resulting HTML is a `<span>` element containing `⟨text⟩`, colorized with the given foreground and background colors.
|
BIN
plugins/55/color/images/picker_blue_gray.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_gold.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_green.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_lavender.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_light_gray.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_light_turquoise.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_light_yellow.png
Normal file
After Width: | Height: | Size: 134 B |
BIN
plugins/55/color/images/picker_lime.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_orange.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_red.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_rose.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_turquoise.png
Normal file
After Width: | Height: | Size: 139 B |
BIN
plugins/55/color/images/picker_yellow.png
Normal file
After Width: | Height: | Size: 155 B |
BIN
plugins/55/color/images/toolbar_icon.png
Normal file
After Width: | Height: | Size: 385 B |
7
plugins/55/color/plugin.info.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
base color
|
||||
author Harald Hanche-Olsen
|
||||
email harald.hanche-olsen@ntnu.no
|
||||
date 2022-10-19
|
||||
name color syntax plugin
|
||||
desc Write colored text in DokuWiki.
|
||||
url https://www.dokuwiki.org/plugin:color
|
91
plugins/55/color/script.js
Normal file
|
@ -0,0 +1,91 @@
|
|||
/* JavaScript function to create color toolbar in Dokuwiki */
|
||||
/* see http://www.dokuwiki.org/plugin:color for more info */
|
||||
|
||||
color_icobase = "../../plugins/color/images/";
|
||||
|
||||
if(window.toolbar != undefined) {
|
||||
toolbar[toolbar.length] = {
|
||||
"type":"picker",
|
||||
"title":"Color Text",
|
||||
"icon":color_icobase+"toolbar_icon.png",
|
||||
"list":[{
|
||||
"type":"format",
|
||||
"title":"Gray Colored Text",
|
||||
"icon":color_icobase+"picker_light_gray.png",
|
||||
"open":"<color #c3c3c3>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Rose Highlighted Text",
|
||||
"icon":color_icobase+"picker_rose.png",
|
||||
"open":"<color #ffaec9>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Red Highlighted Text",
|
||||
"icon":color_icobase+"picker_red.png",
|
||||
"open":"<color #ed1c24>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Orange Highlighted Text",
|
||||
"icon":color_icobase+"picker_orange.png",
|
||||
"open":"<color #ff7f27>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Gold Highlighted Text",
|
||||
"icon":color_icobase+"picker_gold.png",
|
||||
"open":"<color #ffc90e>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Yellow Highlighted Text",
|
||||
"icon":color_icobase+"picker_yellow.png",
|
||||
"open":"<color #fff200>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Light Yellow Highlighted Text",
|
||||
"icon":color_icobase+"picker_light_yellow.png",
|
||||
"open":"<color #efe4B0>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Green Highlighted Text",
|
||||
"icon":color_icobase+"picker_green.png",
|
||||
"open":"<color #22b14c>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Lime Highlighted Text",
|
||||
"icon":color_icobase+"picker_lime.png",
|
||||
"open":"<color #b5e61d>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Turquoise Highlighted Text",
|
||||
"icon":color_icobase+"picker_turquoise.png",
|
||||
"open":"<color #00a2e8>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Light Turquoise Highlighted Text",
|
||||
"icon":color_icobase+"picker_light_turquoise.png",
|
||||
"open":"<color #99d9ea>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Blue-Gray Highlighted Text",
|
||||
"icon":color_icobase+"picker_blue_gray.png",
|
||||
"open":"<color #7092be>",
|
||||
"close":"</color>"
|
||||
}, {
|
||||
"type":"format",
|
||||
"title":"Lavender Highlighted Text",
|
||||
"icon":color_icobase+"picker_lavender.png",
|
||||
"open":"<color #c8bfe7>",
|
||||
"close":"</color>"
|
||||
}]
|
||||
};
|
||||
}
|
115
plugins/55/color/syntax.php
Normal file
|
@ -0,0 +1,115 @@
|
|||
<?php
|
||||
/**
|
||||
* Plugin Color: Sets new colors for text and background.
|
||||
*
|
||||
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
|
||||
* @author Christopher Smith <chris@jalakai.co.uk>
|
||||
*/
|
||||
|
||||
// must be run within DokuWiki
|
||||
if(!defined('DOKU_INC')) die();
|
||||
|
||||
/**
|
||||
* All DokuWiki plugins to extend the parser/rendering mechanism
|
||||
* need to inherit from this class
|
||||
*/
|
||||
class syntax_plugin_color extends DokuWiki_Syntax_Plugin {
|
||||
|
||||
function getType(){ return 'formatting'; }
|
||||
function getAllowedTypes() { return array('formatting', 'substition', 'disabled'); }
|
||||
function getSort(){ return 158; }
|
||||
function connectTo($mode) { $this->Lexer->addEntryPattern('<color.*?>(?=.*?</color>)',$mode,'plugin_color'); }
|
||||
function postConnect() { $this->Lexer->addExitPattern('</color>','plugin_color'); }
|
||||
|
||||
|
||||
/**
|
||||
* Handle the match
|
||||
*/
|
||||
function handle($match, $state, $pos, Doku_Handler $handler){
|
||||
switch ($state) {
|
||||
case DOKU_LEXER_ENTER :
|
||||
$str = substr($match, 6, -1);
|
||||
if (false === strpbrk($str,':')){
|
||||
$m = explode('/', $str);
|
||||
} else {
|
||||
$m = explode(':', $str);
|
||||
}
|
||||
$color = $this->_specToCSS('color', $m[0]);
|
||||
$background = $this->_specToCSS('background-color',
|
||||
isset($m[1]) ? $m[1] : null);
|
||||
return [$state, [$color, $background]];
|
||||
|
||||
case DOKU_LEXER_UNMATCHED : return array($state, $match);
|
||||
case DOKU_LEXER_EXIT : return array($state, '');
|
||||
}
|
||||
return array();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create output
|
||||
*/
|
||||
function render($mode, Doku_Renderer $renderer, $data) {
|
||||
if($mode == 'xhtml'){
|
||||
list($state, $match) = $data;
|
||||
switch ($state) {
|
||||
case DOKU_LEXER_ENTER :
|
||||
list($color, $background) = $match;
|
||||
$renderer->doc .= "<span style='$color $background'>";
|
||||
break;
|
||||
|
||||
case DOKU_LEXER_UNMATCHED : $renderer->doc .= $renderer->_xmlEntities($match); break;
|
||||
case DOKU_LEXER_EXIT : $renderer->doc .= "</span>"; break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if($mode == 'odt'){
|
||||
list($state, $match) = $data;
|
||||
switch ($state) {
|
||||
case DOKU_LEXER_ENTER :
|
||||
list($color, $background) = $match;
|
||||
if (class_exists('ODTDocument')) {
|
||||
$renderer->_odtSpanOpenUseCSS (NULL, 'style="'.$color.$background.'"');
|
||||
}
|
||||
break;
|
||||
|
||||
case DOKU_LEXER_UNMATCHED :
|
||||
$renderer->cdata($match);
|
||||
break;
|
||||
|
||||
case DOKU_LEXER_EXIT :
|
||||
if (class_exists('ODTDocument')) {
|
||||
$renderer->_odtSpanClose();
|
||||
}
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
if($mode == 'metadata'){
|
||||
list($state, $match) = $data;
|
||||
switch ($state) {
|
||||
case DOKU_LEXER_UNMATCHED :
|
||||
if ($renderer->capture) $renderer->cdata($match);
|
||||
break;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
// Build a CSS attribute:value pair.
|
||||
function _specToCSS($attrib, $c) {
|
||||
$c = trim($c);
|
||||
return ((!empty($c) &&
|
||||
$this->_isValid($c)) ? $attrib.':'.$c.';'
|
||||
: null);
|
||||
}
|
||||
|
||||
// validate color value $c
|
||||
// this is cut price validation - only to ensure there is nothing harmful
|
||||
// just ensure that no illegal characters are included therein
|
||||
// leave it to the browsers to ignore a faulty colour specification
|
||||
function _isValid($c) {
|
||||
return (false === strpbrk($c, '"\'<>&;'));
|
||||
}
|
||||
}
|
||||
?>
|
54
plugins/55/mathjax.mk
Normal file
|
@ -0,0 +1,54 @@
|
|||
# Progress Linux: dokuwiki-plugins-extra
|
||||
|
||||
# Copyright (C) 2024 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0+
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# Build-Depends:
|
||||
# none
|
||||
|
||||
SHELL := sh -e
|
||||
|
||||
PLUGIN := mathjax
|
||||
|
||||
all:
|
||||
|
||||
test:
|
||||
|
||||
build:
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
cp -a $(PLUGIN) $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
|
||||
# removing unused files
|
||||
rm -f $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/README*
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/.git*
|
||||
|
||||
uninstall:
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)
|
||||
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
||||
|
||||
clean:
|
||||
|
||||
distclean:
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
upstream:
|
||||
rm -rf $(PLUGIN)
|
||||
git clone https://github.com/liffiton/dokuwiki-plugin-mathjax $(PLUGIN)
|
||||
rm -rf $(PLUGIN)/.git
|
28
plugins/55/mathjax/README
Normal file
|
@ -0,0 +1,28 @@
|
|||
MathJax Plugin for DokuWiki
|
||||
|
||||
Enables MathJax parsing of TeX math expressions in wiki pages
|
||||
(See https://www.mathjax.org/)
|
||||
|
||||
All documentation for this plugin can be found at
|
||||
https://www.dokuwiki.org/plugin:mathjax
|
||||
|
||||
If you install this plugin manually, make sure it is installed in
|
||||
lib/plugins/mathjax/ - if the folder is named differently, it
|
||||
will not work!
|
||||
|
||||
Please refer to https://www.dokuwiki.org/plugins for additional info
|
||||
on how to install plugins in DokuWiki.
|
||||
|
||||
----
|
||||
Copyright (C) Mark Liffiton <liffiton@gmail.com>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; version 2 of the License
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
See the COPYING file in your DokuWiki folder for details
|
68
plugins/55/mathjax/action/enable.php
Normal file
|
@ -0,0 +1,68 @@
|
|||
<?php
|
||||
/**
|
||||
* DokuWiki Plugin mathjax (Action Component)
|
||||
*
|
||||
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
|
||||
* @author Mark Liffiton <liffiton@gmail.com>
|
||||
*/
|
||||
|
||||
// must be run within Dokuwiki
|
||||
if (!defined('DOKU_INC')) die();
|
||||
|
||||
/**
|
||||
* Add scripts via an event handler
|
||||
*/
|
||||
class action_plugin_mathjax_enable extends DokuWiki_Action_Plugin {
|
||||
|
||||
/**
|
||||
* Registers our handler for the TPL_METAHEADER_OUTPUT event
|
||||
*/
|
||||
public function register(Doku_Event_Handler $controller) {
|
||||
$controller->register_hook('TPL_METAHEADER_OUTPUT', 'BEFORE', $this, 'handle_tpl_metaheader_output');
|
||||
}
|
||||
|
||||
/**
|
||||
* Add <script> blocks to the headers:
|
||||
* - One to load MathJax and one to configure it
|
||||
* - Also add one block per configfile, if any are specified
|
||||
* See https://docs.mathjax.org/en/latest/configuration.html#using-in-line-configuration-options
|
||||
*
|
||||
* @param Doku_Event $event
|
||||
* @param $param
|
||||
*/
|
||||
public function handle_tpl_metaheader_output(Doku_Event &$event, $param) {
|
||||
// Create main config block
|
||||
$event->data['script'][] = array(
|
||||
'type' => 'text/x-mathjax-config',
|
||||
'_data' => $this->getConf('config'),
|
||||
);
|
||||
|
||||
// Include config files, if any specified
|
||||
$configfiles = $this->getConf('configfile');
|
||||
$files = explode(';', $configfiles);
|
||||
foreach ($files as $f) {
|
||||
$f = trim($f);
|
||||
if ($f == "" or !is_readable($f)) {
|
||||
continue;
|
||||
}
|
||||
$contents = file_get_contents(DOKU_INC . $f);
|
||||
if ($contents) {
|
||||
$event->data['script'][] = array(
|
||||
'type' => 'text/x-mathjax-config',
|
||||
'_data' => "\n// " . $f . "\n" . $contents,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
// Load MathJax itself
|
||||
$event->data['script'][] = array(
|
||||
'type' => 'text/javascript',
|
||||
'charset' => 'utf-8',
|
||||
'src' => $this->getConf('url'),
|
||||
'_data' => '',
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// vim:ts=4:sw=4:et:
|
19
plugins/55/mathjax/conf/default.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
/**
|
||||
* Default settings for the mathjax plugin
|
||||
*
|
||||
* @author Mark Liffiton <liffiton@gmail.com>
|
||||
*/
|
||||
|
||||
$conf['url'] = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.9/MathJax.js?config=TeX-AMS_CHTML.js';
|
||||
$conf['config'] = 'MathJax.Hub.Config({
|
||||
tex2jax: {
|
||||
inlineMath: [ ["$","$"], ["\\\\(","\\\\)"] ],
|
||||
displayMath: [ ["$$","$$"], ["\\\\[","\\\\]"] ],
|
||||
processEscapes: true
|
||||
}
|
||||
});';
|
||||
$conf['configfile'] = '';
|
||||
$conf['asciimath'] = 0;
|
||||
$conf['mathtags'] = '';
|
||||
|
13
plugins/55/mathjax/conf/metadata.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
/**
|
||||
* Options for the mathjax plugin
|
||||
*
|
||||
* @author Mark Liffiton <liffiton@gmail.com>
|
||||
*/
|
||||
|
||||
$meta['url'] = array('string');
|
||||
$meta['config'] = array('');
|
||||
$meta['configfile'] = array('string');
|
||||
$meta['asciimath'] = array('onoff');
|
||||
$meta['mathtags'] = array('string');
|
||||
|
8
plugins/55/mathjax/lang/en/settings.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
$lang['url'] = 'The URL from which MathJax will be loaded.';
|
||||
$lang['config'] = '(Optional) MathJax configuration; javascript code executed when MathJax loads. See https://docs.mathjax.org/en/latest/options/';
|
||||
$lang['configfile'] = '(Optional) One or more files containing MathJax configuration commands. Specify paths relative to the dokuwiki installation directory (e.g. conf/mathjax.js or data/pages/mathjaxconf.txt), and separate multiple files with semicolons.';
|
||||
$lang['asciimath'] = 'Turn this on if you use AsciiMath. This will ensure that `-delimited strings are left alone for MathJax to parse. (Incompatible with Markdown plugins.)';
|
||||
$lang['mathtags'] = '(Optional) HTML tags to treat as math for MathJax to parse. Specify each as the tag name without angle brackets, and separate multiple tags with commas. If using this option, the tags (with angle brackets) must be added to the MathJax configuration. E.g. "mytag, othertag" here would need something like the following in the MathJax configuration: inlineMath: [ ["<mytag>", "</mytag>"], ["<othertag>", "</othertag>"] ]';
|
||||
|
6
plugins/55/mathjax/lang/zh/settings.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
$lang['url'] = '载入 MathJax 的网址。';
|
||||
$lang['config'] = '(可选的) MathJax 配置; MathJax 载入时执行的 javascript 代码。参见 http://docs.mathjax.org/en/latest/options/';
|
||||
$lang['configfile'] = '(可选的) 一个或多个包含 MathJax 配置命令的文件。指定相对于 dokuwiki 安装目录的路径(例如 conf/mathjax.js 或者 data/pages/mathjaxconf.txt),并用分号分隔多个文件。';
|
||||
|
7
plugins/55/mathjax/plugin.info.txt
Normal file
|
@ -0,0 +1,7 @@
|
|||
base mathjax
|
||||
author Mark Liffiton
|
||||
email liffiton@gmail.com
|
||||
date 2021-11-20
|
||||
name MathJax plugin
|
||||
desc Enables MathJax (https://www.mathjax.org/) parsing of TeX math expressions in wiki pages
|
||||
url https://www.dokuwiki.org/plugin:mathjax
|
161
plugins/55/mathjax/syntax/protecttex.php
Normal file
|
@ -0,0 +1,161 @@
|
|||
<?php
|
||||
/**
|
||||
* DokuWiki Plugin mathjax (Syntax Component)
|
||||
*
|
||||
* @license GPL 2 http://www.gnu.org/licenses/gpl-2.0.html
|
||||
* @author Mark Liffiton <liffiton@gmail.com>
|
||||
*/
|
||||
|
||||
// must be run within Dokuwiki
|
||||
if (!defined('DOKU_INC')) die();
|
||||
|
||||
/**
|
||||
* Class syntax_plugin_mathjax_protecttex
|
||||
*/
|
||||
class syntax_plugin_mathjax_protecttex extends DokuWiki_Syntax_Plugin {
|
||||
# We need to grab any math before dokuwiki tries to parse it.
|
||||
# Once it's 'claimed' by this plugin (type: protected), it won't be altered.
|
||||
|
||||
# Set of environments that this plugin will protect from Dokuwiki parsing
|
||||
# * is escaped to work in regexp below
|
||||
# Note: "math", "displaymath", and "flalign" environments seem to not be
|
||||
# recognized by Mathjax... They will still be protected from Dokuwiki,
|
||||
# but they will not be rendered by MathJax.
|
||||
private static $ENVIRONMENTS = array(
|
||||
"math",
|
||||
"displaymath",
|
||||
"equation",
|
||||
"equation\*",
|
||||
"eqnarray",
|
||||
"eqnarray\*",
|
||||
"align",
|
||||
"align\*",
|
||||
"flalign",
|
||||
"flalign\*",
|
||||
"alignat",
|
||||
"alignat\*",
|
||||
"multline",
|
||||
"multline\*",
|
||||
"gather",
|
||||
"gather\*",
|
||||
);
|
||||
|
||||
/**
|
||||
* Syntax Type
|
||||
*
|
||||
* Needs to return one of the mode types defined in $PARSER_MODES in parser.php
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getType() {
|
||||
return 'protected';
|
||||
}
|
||||
|
||||
/**
|
||||
* Sort for applying this mode
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function getSort() {
|
||||
return 65;
|
||||
}
|
||||
|
||||
/**
|
||||
* regexp patterns adapted from jsMath plugin: https://www.dokuwiki.org/plugin:jsmath
|
||||
*
|
||||
* @param string $mode
|
||||
*/
|
||||
public function connectTo($mode) {
|
||||
$this->Lexer->addEntryPattern('(?<!\\\\)\$(?=[^\$][^\r\n]*?\$)',$mode,'plugin_mathjax_protecttex');
|
||||
$this->Lexer->addEntryPattern('\$\$(?=.*?\$\$)',$mode,'plugin_mathjax_protecttex');
|
||||
$this->Lexer->addEntryPattern('\\\\\((?=.*?\\\\\))',$mode,'plugin_mathjax_protecttex');
|
||||
$this->Lexer->addEntryPattern('\\\\\[(?=.*?\\\\])',$mode,'plugin_mathjax_protecttex');
|
||||
foreach (self::$ENVIRONMENTS as $env) {
|
||||
$this->Lexer->addEntryPattern('\\\\begin{' . $env . '}(?=.*?\\\\end{' . $env . '})',$mode,'plugin_mathjax_protecttex');
|
||||
}
|
||||
|
||||
if ($this->getConf('asciimath')) {
|
||||
// Protect the default AsciiMath delimiter
|
||||
$this->Lexer->addEntryPattern('`(?=.*?`)',$mode,'plugin_mathjax_protecttex');
|
||||
}
|
||||
|
||||
// Protect specified tags, if any
|
||||
$conf_mathtags = $this->getConf('mathtags');
|
||||
$mathtags = explode(',', $conf_mathtags);
|
||||
foreach ($mathtags as $tag) {
|
||||
$tag = trim($tag);
|
||||
if ($tag == "") { continue; }
|
||||
$this->Lexer->addEntryPattern('<' . $tag . '.*?>(?=.*?</' . $tag . '>)',$mode,'plugin_mathjax_protecttex');
|
||||
}
|
||||
}
|
||||
public function postConnect() {
|
||||
$this->Lexer->addExitPattern('\$(?!\$)','plugin_mathjax_protecttex');
|
||||
$this->Lexer->addExitPattern('\\\\\)','plugin_mathjax_protecttex');
|
||||
$this->Lexer->addExitPattern('\\\\\]','plugin_mathjax_protecttex');
|
||||
foreach (self::$ENVIRONMENTS as $env) {
|
||||
$this->Lexer->addExitPattern('\\\\end{' . $env . '}','plugin_mathjax_protecttex');
|
||||
}
|
||||
|
||||
if ($this->getConf('asciimath')) {
|
||||
// Protect the default AsciiMath delimiter
|
||||
$this->Lexer->addExitPattern('`','plugin_mathjax_protecttex');
|
||||
}
|
||||
|
||||
// Protect specified tags, if any
|
||||
$conf_mathtags = $this->getConf('mathtags');
|
||||
$mathtags = explode(',', $conf_mathtags);
|
||||
foreach ($mathtags as $tag) {
|
||||
$tag = trim($tag);
|
||||
if ($tag == "") { continue; }
|
||||
$this->Lexer->addExitPattern('</' . $tag . '>','plugin_mathjax_protecttex');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Handler to prepare matched data for the rendering process
|
||||
*
|
||||
* This function can only pass data to render() via its return value - render()
|
||||
* may be not be run during the object's current life.
|
||||
*
|
||||
* Usually you should only need the $match param.
|
||||
*
|
||||
* @param string $match The text matched by the patterns
|
||||
* @param int $state The lexer state for the match
|
||||
* @param int $pos The character position of the matched text
|
||||
* @param Doku_Handler $handler The Doku_Handler object
|
||||
* @return array Return an array with all data you want to use in render
|
||||
*/
|
||||
public function handle($match, $state, $pos, Doku_Handler $handler){
|
||||
// Just pass it through...
|
||||
return $match;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the actual output creation.
|
||||
*
|
||||
* @param $mode string output format being rendered
|
||||
* @param $renderer Doku_Renderer the current renderer object
|
||||
* @param $data array data created by handler()
|
||||
* @return boolean rendered correctly?
|
||||
*/
|
||||
public function render($mode, Doku_Renderer $renderer, $data) {
|
||||
if ($mode == 'xhtml' || $mode == 'odt') {
|
||||
/** @var Doku_Renderer_xhtml $renderer */
|
||||
|
||||
// Just pass it through, but escape xml entities...
|
||||
$renderer->doc .= $renderer->_xmlEntities($data);
|
||||
return true;
|
||||
}
|
||||
if ($mode == 'latexport') {
|
||||
// Pass math expressions to latexport renderer
|
||||
$renderer->mathjax_content($data);
|
||||
return true;
|
||||
}
|
||||
|
||||
// For all other modes, pass through unchanged.
|
||||
$renderer->doc .= $data;
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
// vim:ts=4:sw=4:et:
|
57
plugins/55/wrap.mk
Normal file
|
@ -0,0 +1,57 @@
|
|||
# Progress Linux: dokuwiki-plugins-extra
|
||||
|
||||
# Copyright (C) 2024 Daniel Baumann <daniel.baumann@progress-linux.org>
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-3.0+
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# Build-Depends:
|
||||
# none
|
||||
|
||||
SHELL := sh -e
|
||||
|
||||
PLUGIN := wrap
|
||||
|
||||
all:
|
||||
|
||||
test:
|
||||
|
||||
build:
|
||||
|
||||
install:
|
||||
mkdir -p $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
cp -a $(PLUGIN) $(DESTDIR)/usr/share/dokuwiki/plugins-extra
|
||||
|
||||
# removing unused files
|
||||
rm -f $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/README*
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/.git*
|
||||
|
||||
rm -f $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/COPYING*
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)/_test
|
||||
|
||||
uninstall:
|
||||
rm -rf $(DESTDIR)/usr/share/dokuwiki/plugins-extra/$(PLUGIN)
|
||||
rmdir --ignore-fail-on-non-empty --parents $(DESTDIR) || true
|
||||
|
||||
clean:
|
||||
|
||||
distclean:
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
upstream:
|
||||
rm -rf $(PLUGIN)
|
||||
git clone https://github.com/selfthinker/dokuwiki_plugin_wrap $(PLUGIN)
|
||||
rm -rf $(PLUGIN)/.git
|
52
plugins/55/wrap/.github/workflows/phpTestLinux.yml
vendored
Normal file
|
@ -0,0 +1,52 @@
|
|||
name: PHP Tests on Linux
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
testLinux:
|
||||
name: PHP ${{ matrix.php-versions }} DokuWiki ${{ matrix.dokuwiki-branch }}
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['7.2', '7.3', '7.4', '8.0']
|
||||
dokuwiki-branch: [ 'master', 'stable']
|
||||
exclude:
|
||||
- dokuwiki-branch: 'stable'
|
||||
php-versions: '8.0'
|
||||
fail-fast: false
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
extensions: mbstring, intl, PDO, pdo_sqlite, bz2
|
||||
|
||||
- name: Setup problem matchers
|
||||
run: |
|
||||
echo ::add-matcher::${{ runner.tool_cache }}/php.json
|
||||
echo ::add-matcher::${{ runner.tool_cache }}/phpunit.json
|
||||
|
||||
- name: Download DokuWiki Test-setup
|
||||
run: wget https://raw.github.com/splitbrain/dokuwiki-travis/master/travis.sh
|
||||
|
||||
- name: Run DokuWiki Test-setup
|
||||
env:
|
||||
CI_SERVER: 1
|
||||
DOKUWIKI: ${{ matrix.dokuwiki-branch }}
|
||||
run: sh travis.sh
|
||||
|
||||
- name: Setup PHPUnit
|
||||
run: |
|
||||
php _test/fetchphpunit.php
|
||||
cd _test
|
||||
|
||||
- name: Run PHPUnit
|
||||
run: |
|
||||
cd _test
|
||||
php phpunit.phar --verbose --stderr --group plugin_wrap
|
340
plugins/55/wrap/COPYING
Normal file
|
@ -0,0 +1,340 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
1
plugins/55/wrap/README
Normal file
|
@ -0,0 +1 @@
|
|||
see plugin.info.txt
|
86
plugins/55/wrap/_test/GeneralTest.php
Normal file
|
@ -0,0 +1,86 @@
|
|||
<?php
|
||||
|
||||
namespace dokuwiki\plugin\wrap\test;
|
||||
|
||||
use DokuWikiTest;
|
||||
|
||||
/**
|
||||
* General tests for the wrap plugin
|
||||
*
|
||||
* @group plugin_wrap
|
||||
* @group plugins
|
||||
*/
|
||||
class GeneralTest extends DokuWikiTest
|
||||
{
|
||||
|
||||
/**
|
||||
* Simple test to make sure the plugin.info.txt is in correct format
|
||||
*/
|
||||
public function testPluginInfo(): void
|
||||
{
|
||||
$file = __DIR__ . '/../plugin.info.txt';
|
||||
$this->assertFileExists($file);
|
||||
|
||||
$info = confToHash($file);
|
||||
|
||||
$this->assertArrayHasKey('base', $info);
|
||||
$this->assertArrayHasKey('author', $info);
|
||||
$this->assertArrayHasKey('email', $info);
|
||||
$this->assertArrayHasKey('date', $info);
|
||||
$this->assertArrayHasKey('name', $info);
|
||||
$this->assertArrayHasKey('desc', $info);
|
||||
$this->assertArrayHasKey('url', $info);
|
||||
|
||||
$this->assertEquals('wrap', $info['base']);
|
||||
$this->assertRegExp('/^https?:\/\//', $info['url']);
|
||||
$this->assertTrue(mail_isvalid($info['email']));
|
||||
$this->assertRegExp('/^\d\d\d\d-\d\d-\d\d$/', $info['date']);
|
||||
$this->assertTrue(false !== strtotime($info['date']));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test to ensure that every conf['...'] entry in conf/default.php has a corresponding meta['...'] entry in
|
||||
* conf/metadata.php.
|
||||
*/
|
||||
public function testPluginConf(): void
|
||||
{
|
||||
$conf_file = __DIR__ . '/../conf/default.php';
|
||||
$meta_file = __DIR__ . '/../conf/metadata.php';
|
||||
|
||||
if (!file_exists($conf_file) && !file_exists($meta_file)) {
|
||||
self::markTestSkipped('No config files exist -> skipping test');
|
||||
}
|
||||
|
||||
if (file_exists($conf_file)) {
|
||||
include($conf_file);
|
||||
}
|
||||
if (file_exists($meta_file)) {
|
||||
include($meta_file);
|
||||
}
|
||||
|
||||
$this->assertEquals(
|
||||
gettype($conf),
|
||||
gettype($meta),
|
||||
'Both ' . DOKU_PLUGIN . 'wrap/conf/default.php and ' . DOKU_PLUGIN . 'wrap/conf/metadata.php have to exist and contain the same keys.'
|
||||
);
|
||||
|
||||
if ($conf !== null && $meta !== null) {
|
||||
foreach ($conf as $key => $value) {
|
||||
$this->assertArrayHasKey(
|
||||
$key,
|
||||
$meta,
|
||||
'Key $meta[\'' . $key . '\'] missing in ' . DOKU_PLUGIN . 'wrap/conf/metadata.php'
|
||||
);
|
||||
}
|
||||
|
||||
foreach ($meta as $key => $value) {
|
||||
$this->assertArrayHasKey(
|
||||
$key,
|
||||
$conf,
|
||||
'Key $conf[\'' . $key . '\'] missing in ' . DOKU_PLUGIN . 'wrap/conf/default.php'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
246
plugins/55/wrap/_test/SyntaxTest.php
Normal file
|
@ -0,0 +1,246 @@
|
|||
<?php
|
||||
|
||||
namespace dokuwiki\plugin\wrap\test;
|
||||
|
||||
use DokuWikiTest;
|
||||
|
||||
/**
|
||||
* Tests to ensure wrap syntax is correctly processed
|
||||
*
|
||||
* @group plugin_wrap
|
||||
* @group plugins
|
||||
*/
|
||||
class SyntaxTest extends DokuWikiTest {
|
||||
|
||||
protected $pluginsEnabled = ['wrap'];
|
||||
|
||||
public function testNestedHeading() {
|
||||
$instructions = p_get_instructions("<WRAP>\n==== Heading ====\n\nSome text\n</WRAP>");
|
||||
$expected =
|
||||
[
|
||||
[
|
||||
'document_start',
|
||||
[],
|
||||
0
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_divwrap',
|
||||
[
|
||||
DOKU_LEXER_ENTER,
|
||||
'<wrap'
|
||||
],
|
||||
DOKU_LEXER_ENTER,
|
||||
'<WRAP>'
|
||||
],
|
||||
1
|
||||
],
|
||||
[
|
||||
'header',
|
||||
[
|
||||
'Heading',
|
||||
3,
|
||||
8
|
||||
],
|
||||
8
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_closesection',
|
||||
[],
|
||||
DOKU_LEXER_SPECIAL,
|
||||
false
|
||||
],
|
||||
8
|
||||
],
|
||||
[
|
||||
'p_open',
|
||||
[],
|
||||
8
|
||||
],
|
||||
[
|
||||
'cdata',
|
||||
[
|
||||
'Some text'
|
||||
],
|
||||
27
|
||||
],
|
||||
[
|
||||
'p_close',
|
||||
[],
|
||||
37
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_divwrap',
|
||||
[
|
||||
DOKU_LEXER_EXIT,
|
||||
''
|
||||
],
|
||||
DOKU_LEXER_EXIT,
|
||||
'</WRAP>'
|
||||
],
|
||||
37
|
||||
],
|
||||
[
|
||||
'document_end',
|
||||
[],
|
||||
37
|
||||
]
|
||||
];
|
||||
$this->assertEquals($expected, $instructions);
|
||||
}
|
||||
|
||||
public function testBlockNesting() {
|
||||
$instructions = p_get_instructions("<WRAP>\nFoo\n\n</div> </block> Bar\n</WRAP>");
|
||||
$expected =
|
||||
[
|
||||
[
|
||||
'document_start',
|
||||
[],
|
||||
0
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_divwrap',
|
||||
[
|
||||
DOKU_LEXER_ENTER,
|
||||
'<wrap'
|
||||
],
|
||||
DOKU_LEXER_ENTER,
|
||||
'<WRAP>'
|
||||
],
|
||||
1
|
||||
],
|
||||
[
|
||||
'p_open',
|
||||
[
|
||||
],
|
||||
1
|
||||
],
|
||||
[
|
||||
'cdata',
|
||||
[
|
||||
'Foo'
|
||||
],
|
||||
8
|
||||
],
|
||||
[
|
||||
'p_close',
|
||||
[],
|
||||
11
|
||||
],
|
||||
[
|
||||
'p_open',
|
||||
[
|
||||
],
|
||||
11
|
||||
],
|
||||
[
|
||||
'cdata',
|
||||
[
|
||||
'</div> </block> Bar'
|
||||
],
|
||||
13
|
||||
],
|
||||
[
|
||||
'p_close',
|
||||
[],
|
||||
33
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_divwrap',
|
||||
[
|
||||
DOKU_LEXER_EXIT,
|
||||
''
|
||||
],
|
||||
DOKU_LEXER_EXIT,
|
||||
'</WRAP>'
|
||||
],
|
||||
33
|
||||
],
|
||||
[
|
||||
'document_end',
|
||||
[],
|
||||
33
|
||||
]
|
||||
];
|
||||
$this->assertEquals($expected, $instructions);
|
||||
}
|
||||
|
||||
public function testInlineNesting() {
|
||||
$instructions = p_get_instructions("<wrap>Foo </span> </inline> Bar</wrap>");
|
||||
$expected =
|
||||
[
|
||||
[
|
||||
'document_start',
|
||||
[],
|
||||
0
|
||||
],
|
||||
[
|
||||
'p_open',
|
||||
[
|
||||
],
|
||||
0
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_spanwrap',
|
||||
[
|
||||
DOKU_LEXER_ENTER,
|
||||
'<wrap'
|
||||
],
|
||||
DOKU_LEXER_ENTER,
|
||||
'<wrap>'
|
||||
],
|
||||
1
|
||||
],
|
||||
[
|
||||
'cdata',
|
||||
[
|
||||
'Foo </span> </inline> Bar'
|
||||
],
|
||||
7
|
||||
],
|
||||
[
|
||||
'plugin',
|
||||
[
|
||||
'wrap_spanwrap',
|
||||
[
|
||||
DOKU_LEXER_EXIT,
|
||||
''
|
||||
],
|
||||
DOKU_LEXER_EXIT,
|
||||
'</wrap>'
|
||||
],
|
||||
32
|
||||
],
|
||||
[
|
||||
'cdata',
|
||||
[
|
||||
''
|
||||
],
|
||||
39
|
||||
],
|
||||
[
|
||||
'p_close',
|
||||
[],
|
||||
39
|
||||
],
|
||||
[
|
||||
'document_end',
|
||||
[],
|
||||
39
|
||||
]
|
||||
];
|
||||
$this->assertEquals($expected, $instructions);
|
||||
}
|
||||
|
||||
}
|