DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:new_page_dialog

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:new_page_dialog [2011-01-23 21:11] 93.127.113.117plugin:new_page_dialog [2023-09-01 16:23] (current) Klap-in
Line 1: Line 1:
-====== new page dialog plugin ======+====== new page dialog Plugin ======
  
 ---- plugin ---- ---- plugin ----
-description: Yet another "New Page Dialog", with focus on the way people are used to store files. It aims to resemble a regular "Save Asdialog with "Add Folderfunctionality.+description: Yet another New Page Dialog, with focus on the way people are used to store files. It aims to resemble a regular Save As” dialog with Add Folder” functionality.
 author     : Pierre Spring author     : Pierre Spring
 email      : pierre.spring@liip.ch email      : pierre.spring@liip.ch
 type       : action type       : action
-lastupdate : 2008-07-11+lastupdate : 2011-04-04
 compatible : 2008-05-05 compatible : 2008-05-05
 depends    :  depends    : 
 conflicts  conflicts 
-similar    : addnewpage, newpagebutton +similar    : addnewpage, npd 
-tags       : button, form, create+tags       : button, form, create, !obsolete
  
-downloadurl: http://src.chimeric.de/plugin-npd.tgz+downloadurl: https://github.com/caillou/dokuwiki-plugin-npd/tarball/master 
 +sourcerepo : https://github.com/caillou/dokuwiki-plugin-npd 
 +bugtracker : https://github.com/caillou/dokuwiki-plugin-npd/issues 
 + 
 +securityissue: XSS vulnerability, not escaped properly.
 ---- ----
 +
 +**:!: Deprecated :!:** - For usage with current versions of DokuWiki, please use the new [[plugin:npd|New Page Dialog Plugin]], an adopted and forked version of this plugin.
  
 ===== Installation ===== ===== Installation =====
 +
 ==== Install via SVN ==== ==== Install via SVN ====
 go into the ''/lib/plugins'' directory and type: go into the ''/lib/plugins'' directory and type:
Line 23: Line 30:
 </code> </code>
  
-==== Download Zip ==== +==== Download Zip/Tar ====
-The zip can be found <del>[[http://wiki.caillou.ch/lib/exe/fetch.php?media=code:npd.0.5.tgz|here]]</del> FIXME ULR does not work any more+
  
-**Alternate Download:** [[http://src.chimeric.de/plugin-npd.tgz]]+  * **Zip:** https://github.com/caillou/dokuwiki-plugin-npd/zipball/master 
 +  * **Tar:** https://github.com/caillou/dokuwiki-plugin-npd/tarball/master
    
 ==== Add Button to Template ==== ==== Add Button to Template ====
-Decide where you want to insert the "Create New Page" button in your template and insert the the following code:+Decide where you want to insert the "Create New Page" button in your template and insert the following code:
 <code php> <code php>
-if (!plugin_isdisabled('npd') && ($npd =plugin_load('helper', 'npd'))) { +if (!plugin_isdisabled('npd') && ($npd = plugin_load('helper', 'npd'))) { 
     $npd->html_new_page_button();     $npd->html_new_page_button();
 } }
Line 40: Line 47:
 <code html> <code html>
 <div class="bar-right" id="bar__bottomright"> <div class="bar-right" id="bar__bottomright">
-  <?php if (!plugin_isdisabled('npd') && ($npd =plugin_load('helper', 'npd'))) $npd->html_new_page_button(); ?>+  <?php if (!plugin_isdisabled('npd') && ($npd = plugin_load('helper', 'npd'))) $npd->html_new_page_button(); ?>
   <?php tpl_button('subscription')?>   <?php tpl_button('subscription')?>
   <?php tpl_button('admin')?>   <?php tpl_button('admin')?>
Line 54: Line 61:
  
 ===== Changelog ===== ===== Changelog =====
 +
   * 2008-07-11 **Version 0.4:**   * 2008-07-11 **Version 0.4:**
     * fixed compatibility with DokuWiki 2008-05-05     * fixed compatibility with DokuWiki 2008-05-05
Line 64: Line 72:
   * 2007-02-17 **Version 0.1:**    * 2007-02-17 **Version 0.1:** 
     * initial upload     * initial upload
 +
 +===== Demo =====
 +
 +A demo of this plugin can be seen at the [[http://fckw.demo.liip.ch/|fckw plugin demo wiki]]. FIXME
 +
 +
 +===== Screenshots =====
 +
 +{{ http://wiki.caillou.ch/_media/playground:npd_dialog.png?w=&h=&cache=cache }}
 +
 +{{ http://wiki.caillou.ch/_media/playground:npd_createnewfolder.png?w=&h=&cache=cache }}
 +
 +{{ http://wiki.caillou.ch/_media/playground:npd_editfoldername.png?w=&h=&cache=cache }}
 +
 +
 +===== Localization =====
 +
 +Please feel free too add your localizations here, I'll add them into the plugin ASAP.
 +
 +
 ===== Known Issues ===== ===== Known Issues =====
 +
 Please report bugs here: Please report bugs here:
   * Since I updated DokuWiki to the latest release 2009-12-25 "Lemming" this plugin (version 0.5 2008-01-10) doesn't work anymore. The plugin-link /doku.php?id=start&idx=:&npd=1& open a new window, but show the startpage of DokuWiki. Any suggestions?   * Since I updated DokuWiki to the latest release 2009-12-25 "Lemming" this plugin (version 0.5 2008-01-10) doesn't work anymore. The plugin-link /doku.php?id=start&idx=:&npd=1& open a new window, but show the startpage of DokuWiki. Any suggestions?
Line 70: Line 99:
     * I've to the same problem in my DokuWiki and was unable to find a solution yet.     * I've to the same problem in my DokuWiki and was unable to find a solution yet.
     * me too here     * me too here
 +    * [2012] me too :-(
   * It seems this plugin is not compatible with the indexmenu plugin as it attaches events to the standard index menu tree of DokuWiki and not the indexmenu tree. If there could be any chance to disable the indexmenu plugin in the 'new page' window shown by npd then the problem would be solved, using the standard index tree for the 'new page' window and the indexmenu tree for the rest of the wiki.   * It seems this plugin is not compatible with the indexmenu plugin as it attaches events to the standard index menu tree of DokuWiki and not the indexmenu tree. If there could be any chance to disable the indexmenu plugin in the 'new page' window shown by npd then the problem would be solved, using the standard index tree for the 'new page' window and the indexmenu tree for the rest of the wiki.
     * The issue happens only when the [[.:indexmenu#replace index]] indexmenu option is enabled. A workaround patch is available in the [[.:indexmenu:discussion#incompatibility with npd plugin]] discussion.  --- //[[samuele@samuele.netsons.org|Samuele Tognini]] 2009/05/08 16:42//     * The issue happens only when the [[.:indexmenu#replace index]] indexmenu option is enabled. A workaround patch is available in the [[.:indexmenu:discussion#incompatibility with npd plugin]] discussion.  --- //[[samuele@samuele.netsons.org|Samuele Tognini]] 2009/05/08 16:42//
Line 152: Line 182:
 </code>  --- //[[chi@chimeric.de|Michael Klier]] 2008/04/19 01:29// </code>  --- //[[chi@chimeric.de|Michael Klier]] 2008/04/19 01:29//
  
-> I get rid from default button in so manner <code php>+> I get rid from default button in so manner<code php>
         .  .  .  .  .  .         .  .  .  .  .  .
       <div class="bar-left" id="bar__topleft">       <div class="bar-left" id="bar__topleft">
Line 159: Line 189:
         if( $INFO['exists'] === true ) tpl_button('edit') ;         if( $INFO['exists'] === true ) tpl_button('edit') ;
                 
-        if (!plugin_isdisabled('npd') && ($npd =plugin_load('helper', 'npd'))) { +        if (!plugin_isdisabled('npd') && ($npd = plugin_load('helper', 'npd'))) { 
     $npd->html_new_page_button();     $npd->html_new_page_button();
  }  }
Line 166: Line 196:
       </div>       </div>
         .  .  .  .  .         .  .  .  .  .
-</code> ---//[[http://vasiliy-pdk.livejournal.com|Vasiliy Pedak]] 2011/01/23 22:09 +</code>  --- //[[truvazia@gmail.com|Vasiliy Pedak]] 2011/01/23 22:13//
- +
-===== Demo ===== +
-A demo of this plugin can be seen at the [[http://fckw.demo.liip.ch/|fckw plugin demo wiki]]. +
- +
-===== screen shots ===== +
- +
-{{ http://wiki.caillou.ch/_media/playground:npd_dialog.png?w=&h=&cache=cache }} +
- +
-{{ http://wiki.caillou.ch/_media/playground:npd_createnewfolder.png?w=&h=&cache=cache }} +
- +
-{{ http://wiki.caillou.ch/_media/playground:npd_editfoldername.png?w=&h=&cache=cache }} +
- +
- +
-===== Localization ===== +
- +
-For now, localization only exists for English,German and Dutch. Please feel free too add your localizations here, I'll add them into the plugin ASAP. +
- +
-There are two files for localization. +
- +
-The ''lang.php'' file: +
-<code php> +
-/** +
- * English language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Pierre Spring <pierre.spring[curly thing]liip[full stop]ch> +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Create New Page'; +
-$lang['btn_create_page'] = 'Create Page'; +
-$lang['btn_new_folder' = 'New Folder'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Are you sure you want to \ncreate a page called:\n'; +
-$lang['dlg_new_folder'] = 'Enter new folder name:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Page Title'; +
-</code> +
- +
-The ''dialog_folder_name.txt'': +
-<code> +
-Please enter the folder Name.\\ +
-Note that a folder will **NOT** be created before a page\\ +
-within the folder is **SAVED**. +
-</code> +
- +
-==== Polish translation ==== +
-Plik ''lang.php'': +
-<code php> +
-/** +
- * Polish language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Łukasz Czerski +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Utwórz nową stronę'; +
-$lang['btn_create_page'] = 'Utwórz stronę'; +
-$lang['btn_new_folder' = 'Nowy katalog'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Czy na pewno utworzyć stronę:\n'; +
-$lang['dlg_new_folder'] = 'Podaj nazwę katalogu:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Tytuł strony'; +
-</code> +
- +
-Plik ''dialog_folder_name.txt'': +
-<code> +
-Podaj nazwę katalogu.\\ +
-Katalog **NIE** zostanie utworzony dopóki strona\\ +
-znajdująca się w nim nie zostanie **ZAPISANA**. +
-</code> +
-==== German translation ==== +
- +
-''lang.php'': +
-<code php> +
-/** +
- * German language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Tilman Blumenbach <tilman [AT] tblue [DOT] de> +
- */ +
- +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Neue Seite anlegen'; +
-$lang['btn_create_page'] = 'Seite anlegen'; +
-$lang['btn_new_folder' = 'Neuer Ordner'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Sind Sie sicher, dass Sie\neine Seite mit dem folgenden\nTitel anlegen wollen?\n'; +
-$lang['dlg_new_folder'] = 'Namen für neuen Ordner eingeben:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Seitentitel'; +
-</code> +
- +
-''dialog_folder_name.txt'': +
-<code> +
-Bitte geben Sie den Ordnernamen ein.\\ +
-Beachten Sie, dass ein Ordner **NICHT** angelegt wird,\\ +
-bevor eine Seite in dem Ordner **GESPEICHERT** ist. +
-</code> +
- +
- +
-==== Dutch translation ==== +
- +
-''lang.php'': +
-<code php> +
-/** +
- * dutch language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Harro Schuringa  +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Maak nieuwe pagina aan'; +
-$lang['btn_create_page'] = 'Maak pagina aan'; +
-$lang['btn_new_folder' = 'Nieuwe map aanmaken'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Weet u zeker dat u een pagina\naan wilt maken met de naam:\n'; +
-$lang['dlg_new_folder'] = 'Geef de naam van de nieuwe map op:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Pagina Titel'; +
-</code> +
- +
-''dialog_folder_name.txt'': +
-<code> +
-Geef de naam van de map.\\ +
-NB!: Denk eraan dat een map **NIET** aangemaakt wordt voordat de pagina\\ +
-binnenin die map is **OPGESLAGEN**.\\ +
-</code> +
- +
- +
-==== Korean translation ==== +
- +
-''lang.php'': +
-<code php> +
-<?php +
-/** +
- * Korean language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Heesu Yoon <cppigX[atSign]gmail[fullStop]com> (where X=3*5*7*19) +
- */ +
-  +
-/* buttons */ +
-$lang['btn_create_new_page'] = '새 페이지 만들기'; +
-$lang['btn_create_page'] = '페이지 만들기'; +
-$lang['btn_new_folder' = '새 폴더'; +
-$lang['btn_ok'] = '확인'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = '다음 페이지를\n만드시겠습니까?\n'; +
-$lang['dlg_new_folder'] = '새 폴더 이름:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = '페이지 제목'; +
-?> +
- +
-</code> +
- +
-''dialog_folder_name.txt'': +
-<code> +
-폴더 이름을 입력하십시요.\\ +
-참고 - 새 폴더는 폴더 내의 파일이 **저장**될 때까지\\ +
-생성되지 **않습니다.** +
-</code> +
- +
- +
-==== Norwegian translation ==== +
- +
-''lang.php'' +
-<code php> +
-/** +
- * norsk språkfil for plugin "New Page Dialog" +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Torkill Bruland +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Opprett Ny Side'; +
-$lang['btn_create_page'] = 'Lag side'; +
-$lang['btn_new_folder' = 'Ny mappe'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Er du sikker på at du ønsker å \n opprette en side med navnet:\n'; +
-$lang['dlg_new_folder'] = 'Før inn nytt mappenavn:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Sidetittel'; +
-</code> +
- +
-Fila ''dialog_folder_name.txt'': +
-<code> +
-Før inn navnet på mappa.\\ +
-Merk at mappe **IKKE** opprettes før det\\ +
-**LAGRES** en side i vedkommende mappe. +
-</code> +
- +
- +
-==== Italian translation ==== +
- +
-''lang.php'' +
-<code php> +
-/** +
- * italian language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Andrea Papotti <genome[snail shell]cheerful[youknowwhat]com> +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Crea Nuova Pagina'; +
-$lang['btn_create_page'] = 'Crea Pagina'; +
-$lang['btn_new_folder' = 'Nuova Cartella'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Sei sicuro di voler \ncreare una pagina chiamata:\n'; +
-$lang['dlg_new_folder'] = 'Inserisci nome nuova cartella:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Titolo Pagina'; +
-</code> +
- +
-Fila ''dialog_folder_name.txt'': +
-<code> +
-Prego inserire il mome della cartella.\\ +
-Nota: La cartella viene creata solamente quando contiene\\ +
-ALMENO UNA pagina. +
-</code> +
- +
-==== Spanish translation ==== +
-lang.php +
-<code php> +
-<?php +
-/** +
- * Spanish language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Digna González <digna.gonzalezotero[at]gmail[dot]com +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Crear nueva página'; +
-$lang['btn_create_page'] = 'Crear Página'; +
-$lang['btn_new_folder' = 'Nueva Carpeta'; +
-$lang['btn_ok'] = 'Aceptar'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = '¿Está seguro de que desea \n crear una página llamada:\n?'; +
-$lang['dlg_new_folder'] = 'Introduzca el nombre de la carpeta:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Título de la página:'; +
- +
-//Setup VIM: ex: et ts=4 enc=utf-8 : +
-</code> +
- +
-Archivo dialog_folder_name.txt +
-<code> +
-Por favor, introduzca el nombre de la carpeta.\\ +
-Atención: **NO** se creará una carpeta hasta que se **GUARDE**\\ +
-una página dentro de esa carpeta +
-</code> +
- +
-==== Russian translation ==== +
-lang.php +
-<code php> +
-<?php +
-/** +
- * Russian language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Ilya Paramonov +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Создать новую страницу'; +
-$lang['btn_create_page'] = 'Создать страницу'; +
-$lang['btn_new_folder' = 'Создать пространство имён'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Вы действительно хотите\nсоздать страницу с именем:\n'; +
-$lang['dlg_new_folder'] = 'Введите имя нового пространства имён:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Имя страницы'; +
- +
-//Setup VIM: ex: et ts=4 enc=utf-8 : +
-</code> +
- +
-dialog_folder_name.txt +
-<code> +
-Введите название пространства имён.\\ +
-Заметьте, что пространство имён **НЕ** будет создано,\\ +
-пока страница внутри него не будет **СОХРАНЕНА**. +
-</code> +
-==== Czech translation ==== +
-lang.php +
-<code php> +
-/** +
- * Česká verze pluginu "New Page Dialog" +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     2046 +
- */ +
-  +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Vytvoř novou stránku'; +
-$lang['btn_create_page'] = 'Vytvoř stránku'; +
-$lang['btn_new_folder' = 'Nový adresář'; +
-$lang['btn_ok'] = 'OK'; +
-  +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Jseš si jistý, \nže chceš vytvořit stránku s názvem:\n'; +
-$lang['dlg_new_folder'] = 'Zvol název adresáře:'; +
-  +
-/* misc */ +
-$lang['msc_page_title'] = 'Název stránky'; +
-</code> +
- +
----- +
- +
-lang.php +
-<code php> +
-<?php +
-/** +
- * český jazykový soubor pro plugin "New Page Dialog" +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     Tomas Safarik <safarik[curly thing]server[full stop]cz> +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Vytvořit novou stránku'; +
-$lang['btn_create_page'] = 'Vytvořit stránku'; +
-$lang['btn_new_folder' = 'Nová složka'; +
-$lang['btn_ok'] = 'OK'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Určitě chcete vytvořit \nstránku s názvem:\n'; +
-$lang['dlg_new_folder'] = 'Zadejte název nové složky:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Název stránky'; +
-</code> +
- +
-dialog_folder_name.txt +
-<code> +
-Prosím zadejte Název složky.\\ +
-Pamatujte, že složka **NEBUDE** vytvořena, dokud nebude\\ +
-v ní vytvářená stránka **ULOŽENA**. +
-</code> +
- +
-==== Japanese translation ==== +
- +
-''lang.php'': +
-<code php> +
-/** +
- * Japanese language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     smeghead <smeghead[at]users.sourceforge.jp> +
- */ +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = '新しいページの作成'; +
-$lang['btn_create_page'] = 'ページの作成'; +
-$lang['btn_new_folder' = '新しいフォルダ'; +
-$lang['btn_ok'] = 'OK'; +
-  +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = '新しいページを作成します。よろしいですか? \nページ名:\n'; +
-$lang['dlg_new_folder'] = '新しいフォルダ名を入力してください。:'; +
-  +
-/* misc */ +
-$lang['msc_page_title'] = 'ページタイトル'; +
-</code> +
- +
-''dialog_folder_name.txt'': +
-<code> +
-フォルダ名を入力してください。\\ +
-\\ +
-注意:フォルダーの中のページが保存されるまで、\\ +
-フォルダーは作成されません。\\ +
-</code> +
- +
-==== Slovenian translation ==== +
- +
-''lang.php'': +
-<code php> +
-/** +
- * Slovenian language file for the "New Page Dialog" plugin +
- * +
- * @license    GPL 2 (http://www.gnu.org/licenses/gpl.html) +
- * @author     paxman <paxmanpwnz [AT] gmail [DOT] com> +
- */ +
- +
- +
-/* buttons */ +
-$lang['btn_create_new_page'] = 'Ustvari novo stran'; +
-$lang['btn_create_page'] = 'Ustvari stran'; +
-$lang['btn_new_folder' = 'Nova mapa'; +
-$lang['btn_ok'] = 'Potrdi'; +
- +
-/* dialogs */ +
-$lang['dlg_confirm_page_name'] = 'Ste prepričani, da želite\n ustvariti stran:\n'; +
-$lang['dlg_new_folder'] = 'Vnesite ime nove mape:'; +
- +
-/* misc */ +
-$lang['msc_page_title'] = 'Naslov strani'; +
-</code> +
- +
-''dialog_folder_name.txt'': +
-<code> +
-Prosim, vnesite ime mape.\\ +
-Opomba: mapa **NE** bo ustvarjena, dokler ni\\ +
-stran iz le-te **SHRANJENA**. +
-</code>+
  
  
plugin/new_page_dialog.1295813519.txt.gz · Last modified: 2011-01-23 21:11 by 93.127.113.117

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki