Lines Matching refs:match

44     function handle($match, $state, $pos, Doku_Handler $handler) {
48 $match = PhpString::substr($match, 8, -1); //9 = strlen("<nspages")
49 $match .= ' ';
51 optionParser::checkOption($match, "subns", $return['subns'], true);
52 optionParser::checkOption($match, "nopages", $return['nopages'], true);
53 optionParser::checkOption($match, "simpleListe?", $return['simpleList'], true);
54 optionParser::checkOption($match, "tree", $return['tree'], true);
55 optionParser::checkOption($match, "numberedListe?", $return['numberedList'], true);
56 optionParser::checkOption($match, "simpleLineBreak", $return['lineBreak'], true);
57 optionParser::checkOption($match, "title", $return['title'], true);
58 optionParser::checkOption($match, "idAndTitle", $return['idAndTitle'], true);
59 optionParser::checkOption($match, "h1", $return['title'], true);
60 optionParser::checkOption($match, "simpleLine", $return['simpleLine'], true);
61 optionParser::checkOption($match, "sort(By)?Id", $return['sortid'], true);
62 optionParser::checkOption($match, "reverse", $return['reverse'], true);
63 optionParser::checkOption($match, "pagesinns", $return['pagesinns'], true);
64 optionParser::checkOption($match, "nat(ural)?Order", $return['natOrder'], true);
65 optionParser::checkOption($match, "sort(By)?Date", $return['sortDate'], true);
66 optionParser::checkOption($match, "sort(By)?CreationDate", $return['sortByCreationDate'], true);
67 optionParser::checkOption($match, "hidenopages", $return['hidenopages'], true);
68 optionParser::checkOption($match, "hidenosubns", $return['hidenosubns'], true);
69 optionParser::checkOption($match, "showhidden", $return['showhidden'], true);
70 optionParser::checkOption($match, "(use)?Pictures?", $return['usePictures'], true);
71 optionParser::checkOption($match, "(modification)?Dates?OnPictures?", $return['modificationDateOnPictures'], true);
72 optionParser::checkOption($match, "displayModificationDates?", $return["displayModificationDate"], true);
73 optionParser::checkOption($match, "includeItemsInTOC", $return["includeItemsInTOC"], true);
74 optionParser::checkOption($match, "sidebar", $return["sidebar"], true);
75 optionParser::checkRecurse($match, $return['maxDepth']);
76 optionParser::checkNbColumns($match, $return['nbCol']);
77 optionParser::checkSimpleStringArgument($match, $return['textPages'], $this, 'textPages');
78 optionParser::checkSimpleStringArgument($match, $return['customTitle'], $this, 'customTitle');
79 optionParser::checkSimpleStringArgument($match, $return['sortByMetadata'], $this, 'sortByMetadata');
80 optionParser::checkSimpleStringArgument($match, $return['textNS'], $this, 'textNS');
81 optionParser::checkDictOrder($match, $return['dictOrder'], $this);
82 optionParser::checkRegEx($match, "pregPages?On=\"([^\"]*)\"", $return['pregPagesOn']);
83 optionParser::checkRegEx($match, "pregPages?Off=\"([^\"]*)\"", $return['pregPagesOff']);
84 optionParser::checkRegEx($match, "pregPages?TitleOn=\"([^\"]*)\"", $return['pregPagesTitleOn']);
85 optionParser::checkRegEx($match, "pregPages?TitleOff=\"([^\"]*)\"", $return['pregPagesTitleOff']);
86 optionParser::checkRegEx($match, "pregNSOn=\"([^\"]*)\"", $return['pregNSOn']);
87 optionParser::checkRegEx($match, "pregNSOff=\"([^\"]*)\"", $return['pregNSOff']);
88 optionParser::checkRegEx($match, "pregNSTitleOn=\"([^\"]*)\"", $return['pregNSTitleOn']);
89 optionParser::checkRegEx($match, "pregNSTitleOff=\"([^\"]*)\"", $return['pregNSTitleOff']);
90 optionParser::checkNbItemsMax($match, $return['nbItemsMax']);
92 optionParser::checkExclude($match, $return['excludedPages'], $return['excludedNS'], $return['excludeSelfPage']);
93 optionParser::checkAnchorName($match, $return['anchorName']);
94 optionParser::checkActualTitle($match, $return['actualTitleLevel']);
95 optionParser::checkSimpleStringArgument($match, $return['defaultPicture'], $this, 'defaultPicture');
97 //Now, only the wanted namespace remains in $match
98 $match = strtolower(trim($match));
101 $return['wantedNS'] = $match;
103 $nsFinder = new namespaceFinder($match);
145 //even if the lang doesn't match)