From: <var...@us...> - 2020-03-29 20:34:44
|
Revision: 10164 http://sourceforge.net/p/phpwiki/code/10164 Author: vargenau Date: 2020-03-29 20:34:42 +0000 (Sun, 29 Mar 2020) Log Message: ----------- Add locale/fr/pgsrc/Aide%2FListeDePages Added Paths: ----------- trunk/locale/fr/pgsrc/Aide%2FListeDePages Added: trunk/locale/fr/pgsrc/Aide%2FListeDePages =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FListeDePages (rev 0) +++ trunk/locale/fr/pgsrc/Aide%2FListeDePages 2020-03-29 20:34:42 UTC (rev 10164) @@ -0,0 +1,134 @@ +Date: Thu, 13 Oct 2016 15:09:28 +0000 +Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) +Content-Type: application/x-phpwiki; + pagename=Aide%2FListeDePages; + flags=""; + charset=UTF-8 +Content-Transfer-Encoding: binary + +La bibliothèque **~ListeDePages** (//~PageList//) permet de lister un certain nombre de pages, éventuellement sous forme de table avec diverses colonnes. + +La bibliothèque évite du travail pour ces greffons : +* AllPages, +* BackLinks, +* LikePages, +* MostPopular, +* TitleSearch, +- ~WikiAdmin* et d'autres. + +Il permet également une expansion dynamique de ces greffons pour inclure plus de colonnes dans leur sortie. + +== Arguments == + +{| class="bordered" +|- +! Argument +! Description +! Valeur par défaut +|- +| **info** +| Quelles colonnes afficher +| pagename +|- +| **exclude** +| Quelles pages à exclure. Les jokers, les listes séparées par des virgules et les tableaux <!plugin-list !> sont autorisés. +| //none// +|- +| **author** +| select pages by author; current user by ~[~] +| false +|- +| **owner** +| select pages by owner; current user by ~[~] +| false +|- +| **creator** +| select pages by creator; current user by ~[~] +| false +|- +| **sortby** +| select column to sort +| //none// +|- +| **limit** +| number of rows, or start index and number of rows (see below) +| 50 +|- +| **paging** +| auto (top + bottom rows if applicable) \\ top (top only if applicable) \\ bottom (bottom only if applicable) \\ none (don't page at all) +| auto +|- +| **cols** +| side-by-side display of list (1-3) +| 1 +|- +| **azhead** +| 1: group by initials \\ 2: provide shortcut links to initials also +| 0 +|- +| **comma** +| condensed comma-separated list, 1 if without links, 2 if with +| 0 +|- +| **commasep** +| comma separator +| ', ' +|- +| **listtype** +| ul, ol, dl, comma +| ul +|- +| **ordered** +| OL or just UL lists (ignored for comma) +| false +|- +| **linkmore** +| If count > 0 and limit > 0, display a link with the number of all results, linked to the given pagename. +| //none// +|- +| **nopage** +| for info=col omit the pagename column +| false +|} + +=== Note for limit === + +//limit// can be: +* a single integer, in that case it is the number of rows; +* or two integers separated by a comma, in that case it is the start index (starting at 0) and the number of rows. + +=== Info arguments === + +Column 'info=' arguments: +|= pagename | Page Name (string regex) +|= mtime | Last Modified +|= hits | Hits +|= summary | Last Summary +|= version | Version +|= author | Last Author +|= locked | Locked +|= external | External +|= minor | Minor Edit +|= size | Size +|= creator | Creator +|= owner | Owner +|= checkbox | Selectable checkbox at the left +|= content | Page content +|= perm | Permission Mask +|= acl | ACL + +Special, custom columns, either theme or plugin (~WikiAdmin*) specific: +|= remove | Remove +|= renamed_pagename | Rename to +|= ratingwidget | wikilens theme specific. +|= custom | See plugin/WikiTranslation + +Symbolic 'info=' arguments: +|= all | All columns except the special columns +|= most | pagename, mtime, author, size, hits, ... +|= some | pagename, mtime, author + +<noinclude> +---- +[[DocumentationDePhpWiki]] +</noinclude> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |