Home
last modified time | relevance | path

Searched refs:list (Results 26 – 50 of 1525) sorted by relevance

12345678910>>...61

/plugin/yalist/
H A DREADME.md4 This plugin extends DokuWiki's list markup syntax to allow definition lists
5 and list items with multiple paragraphs. The complete syntax is as follows:
8 - ordered list item [<ol><li>] <!-- as standard syntax -->
9 * unordered list item [<ul><li>] <!-- as standard syntax -->
10 ? definition list term [<dl><dt>]
11 : definition list definition [<dl><dd>]
13 -- ordered list item w/ multiple paragraphs
14 ** unordered list item w/ multiple paragraphs
15 :: definition list definition w/multiple paragraphs
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/
H A DSplDoublyLinkedListFilter.php38 $copy = function (SplDoublyLinkedList $list) use ($copier) {
40 for ($i = 1; $i <= $list->count(); $i++) {
41 $copy = $copier->recursiveCopy($list->shift());
43 $list->push($copy);
46 return $list;
/plugin/dw2pdf/vendor/myclabs/deep-copy/src/DeepCopy/TypeFilter/Spl/
H A DSplDoublyLinkedListFilter.php38 $copy = function (SplDoublyLinkedList $list) use ($copier) {
39 // Replace each element in the list with a deep copy of itself
40 for ($i = 1; $i <= $list->count(); $i++) {
41 $copy = $copier->recursiveCopy($list->shift());
43 $list->push($copy);
46 return $list;
/plugin/odt/helper/
H A Ddwcssloader.php170 $list = array();
176 $list[DOKU_PLUGIN . $p ."/screen.css"] = DOKU_INC . "lib/plugins/". $p ."/";
177 $list[DOKU_PLUGIN . $p ."/screen.less"] = DOKU_INC . "lib/plugins/". $p ."/";
178 $list[DOKU_PLUGIN . $p ."/style.css"] = DOKU_INC . "lib/plugins/". $p ."/";
179 $list[DOKU_PLUGIN . $p ."/style.less"] = DOKU_INC . "lib/plugins/". $p ."/";
187 $list[DOKU_PLUGIN . $p ."/". $format .".css"] = DOKU_INC . "lib/plugins/". $p ."/";
188 $list[DOKU_PLUGIN . $p ."/". $format .".less"] = DOKU_INC . "lib/plugins/". $p ."/";
190 $list[DOKU_PLUGIN . $p ."/print.css"] = DOKU_INC . "lib/plugins/". $p ."/";
191 $list[DOKU_PLUGIN . $p ."/print.less"] = DOKU_INC . "lib/plugins/". $p ."/";
194 return $list;
/plugin/sortablejs/
H A Dscript.js249 var cell = list[i];
418 shaker_sort: function ( list, comp_func ) {
423 var t = list.length - 1;
430 if ( comp_func( list[i], list[i + 1] ) > 0 ) {
431 q = list[i];
432 list[i] = list[i + 1];
433 list[i + 1] = q;
444 if ( comp_func( list[i], list[i - 1] ) < 0 ) {
445 q = list[i];
446 list[i] = list[i - 1];
[all …]
/plugin/pureldap/_test/
H A DGroupHierarchyCacheTest.php
/plugin/metadisplay/helper/
H A Dhtml.php316 function insertListInTable($list,$type) { argument
317 if($list) echo "<tr><td>$type</td><td>$list</td></tr>\n";
323 $this->insertListInTable($list,'Backlinks');
330 $list = $this->create_list(array_keys($media));
338 $this->insertListInTable($list,'haspart');
341 $list = create_list(array_keys($subject));
342 $this->insertListInTable($list,'Subject');
348 $list = "\n<ol>\n";
350 $list .= '<li>'. $ar[$i] . "</li>\n";
352 $list .= "</ol>\n";
[all …]
H A Dplaintext.php314 function insertListInTable($list,$type) { argument
315 if($list) echo "$type $list\n";
321 $this->insertListInTable($list,'Backlinks');
328 $list = $this->create_list(array_keys($media));
336 $this->insertListInTable($list,'haspart');
339 $list = create_list(array_keys($subject));
340 $this->insertListInTable($list,'Subject');
346 $list = "\n";
348 $list .= "$i) ". $ar[$i] . "\n";
350 $list .= "\n";
[all …]
/plugin/sympaauth/files/
H A Dsympa.class.php132 foreach ($res as $list) {
134 $grps[0] = $list->listAddress;
136 array_unshift($grps,$list->listAddress);
138 if($list->isOwner == 'true'){
139 $listrequest = preg_replace('/@/','-request@',$list->listAddress);
142 if ($list->isEditor == 'true') {
143 $listeditor = preg_replace('/@/','-editor@',$list->listAddress);
/plugin/combo/resources/theme/default/components/css/
H A Dminimap.css65 #minimap__plugin .panel > .list-group, #minimap__plugin .panel > .panel-collapse > .list-group {
69 #minimap__plugin .list-group {
77 #minimap__plugin .panel-heading + .list-group .list-group-item:first-child {
81 #minimap__plugin .panel > .list-group .list-group-item,
82 #minimap__plugin .panel > .panel-collapse > .list-group .list-group-item {
89 #minimap__plugin .list
[all...]
/plugin/authucenter/lib/uc_client/model/
H A Dpm.php73 function getpostlist($list) { argument
74 if(empty($list)) {
78 foreach($list as $key => $value) {
105 $list[$key] = $value;
107 return $list;
410 $list = array();
419 $list[] = $threadpm['plid'];
422 if($list) {
488 if($list['pmtype'] == 1) {
502 if($list['pmtype'] == 1) {
[all …]
/plugin/odt/action/
H A Dexport.php30 protected $list = array(); variable in action_plugin_odt_export
220 $list = array();
224 $list[0] = $ID;
271 $list[] = $item['id'];
284 $list = explode("|", $_COOKIE['list-pagelist']);
297 if(!is_array($list) || empty($list)) {
317 $list = array_map('cleanID', $list);
320 foreach($list as $index => $pageid) {
323 unset($list[$index]);
326 $list = array_filter($list); //removes also pages mentioned '0'
[all …]
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exception/
H A DValidationFailedException.php14 private $list; variable in JMS\\Serializer\\Exception\\ValidationFailedException
16 public function __construct(ConstraintViolationListInterface $list) argument
18 parent::__construct(sprintf('Validation failed with %d error(s).', \count($list)));
20 $this->list = $list;
/plugin/leightweightscript/
H A Daction.php121 * @param mixed $list the list of path parts to test
124 private function includeFilter( $str, $list ) { argument
126 foreach( $list as $entry ) {
138 * @param mixed $list the list of path parts to test
141 private function excludeFilter( $str, $list ) { argument
142 return !$this->includeFilter( $str, $list );
/plugin/lightweightscript/
H A Daction.php122 * @param mixed $list the list of path parts to test
125 private function includeFilter( $str, $list ) { argument
127 foreach( $list as $entry ) {
139 * @param mixed $list the list of path parts to test
142 private function excludeFilter( $str, $list ) { argument
143 return !$this->includeFilter( $str, $list );
/plugin/dw2pdf/
H A Daction.php33 /** @var array list of pages included in exported pdf */
34 protected $list = [];
97 [$this->title, $this->list] = $this->collectExportablePages($event);
139 * Obtain list of pages and title, for different methods of exporting the pdf.
153 // list of one or multiple pages
154 $list = [];
160 $list[0] = $ID;
234 $list[] = $item['id'];
238 if (!in_array($pdfnamespace . ':' . $conf['start'], $list, true)) {
240 array_unshift($list, rtri
31 protected $list = array(); global() variable in action_plugin_dw2pdf
[all...]
/plugin/epub/scripts/
H A Dcss2.php154 $list = array();
158 $list[DOKU_PLUGIN."$p/all.css"] = DOKU_BASE."lib/plugins/$p/";
160 $list[DOKU_PLUGIN."$p/print.css"] = DOKU_BASE."lib/plugins/$p/";
162 $list[DOKU_PLUGIN."$p/feed.css"] = DOKU_BASE."lib/plugins/$p/";
164 $list[DOKU_PLUGIN."$p/style.css"] = DOKU_BASE."lib/plugins/$p/";
165 $list[DOKU_PLUGIN."$p/screen.css"] = DOKU_BASE."lib/plugins/$p/";
168 $list[DOKU_PLUGIN."$p/rtl.css"] = DOKU_BASE."lib/plugins/$p/";
171 return $list;
/plugin/issuetracker/
H A DxsEditor.js96 var list = sel.text.split("\n");
98 for(i=0;i<list.length;i++)
100 list[i] = "[li]" + list[i] + "[/li]";
102 sel.text = tag1 + "\n" + list.join("\n") + "\n" + tag2;
115 var list = sel.split("\n");
117 for(i=0;i<list.length;i++)
118 { list[i] = "[li]" + list[i] + "[/li]"; }
120 var rep = tag1 + "\n" + list.join("\n") + "\n" +tag2;
/plugin/minimap/
H A Dstyle.css70 #minimap__plugin .panel > .list-group, #minimap__plugin .panel > .panel-collapse > .list-group {
74 #minimap__plugin .list-group {
82 #minimap__plugin .panel-heading + .list-group .list-group-item:first-child {
86 #minimap__plugin .panel > .list-group .list-group-item,
87 #minimap__plugin .panel > .panel-collapse > .list-group .list-group-item {
94 #minimap__plugin .list-group-item {
132 #minimap__plugin .list-group-item.active,
133 #minimap__plugin .list-group-item.active:focus,
134 #minimap__plugin .list-group-item.active:hover {
141 #minimap__plugin .list-group-item.active {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/Namespaces/
H A DAsyncSearchNamespace.asciidoc76 $params['index'] = (list) A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices
87 $params['stored_fields'] = (list) A comma-separated list of stored fields to return as part of a hit
88 $params['docvalue_fields'] = (list) A comma-separated list of fields to return as the docvalue representation of a field for each hit
97 $params['routing'] = (list) A comma-separated list of specific routing values
100 $params['sort'] = (list) A comma-separated list o
[all...]
H A DIndicesNamespace.asciidoc86 $params['index'] = (list) A comma separated list of indices to add a block to
119 $params['index'] = (list) A comma-separated list of index name to limit the operation
121 $params['fields'] = (list) A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
156 $params['index'] = (list) A comma separated list of indices to close
202 $params['name'] = (list) A comma-separated list o
[all...]
/plugin/numberof/
H A Dsyntax.php22 $list = array(
32 search($list,$conf['datadir'].$matches[1],array($this,'_search_count'),array('all'=>false),'');
36 search($list,$conf['mediadir'].$matches[1],array($this,'_search_count'),array('all'=>true));
39 return ['count' => $list['file_count']];
/plugin/indexnumber/
H A Dscript.js24 function createIndexnumberPicker(id, list, edid) { argument
35 for (i = 0; i < list.length; i++) {
37 .text(list[i])
38 .click(getInsertHandler(list[i]));
57 createIndexnumberPicker(pickerid, props.list, edid);
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/build/Elasticsearch/
H A DClient.asciidoc111 $params['_source'] = (list) True or false to return the _source field or not, or default list of fields to return, can be overridden on each sub-request
112 $params['_source_excludes'] = (list) Default list of fields to exclude from the returned _source field, can be overridden on each sub-request
113 $params['_source_includes'] = (list) Default list of fields to extract and return from the _source field, can be overridden on each sub-request
129 $params['scroll_id'] = DEPRECATED (list) A comma-separated list of scroll IDs to clear
130 $params['body'] = (array) A comma-separated list of scroll IDs to clear if none was specified via the scroll_id parameter
156 $params['index'] = (list)
[all...]
/plugin/lists/
H A Dsyntax_plugin_lists.css24 list-style-position: outside;
25 list-style-image: none;
53 list-style-type: disc;
56 list-style-type: square;
59 list-style-type: decimal;
62 list-style-type: upper-roman;
65 list-style-type: lower-alpha;
68 list-style-type: lower-greek;

12345678910>>...61