parses out the maintainers from the maintainer line
($line)
| 160 | |
| 161 | /// parses out the maintainers from the maintainer line |
| 162 | function parseMaintainerLine($line) { |
| 163 | $replacements = array( |
| 164 | "Maintainer" => "", |
| 165 | ":" => "", |
| 166 | "/" => "", |
| 167 | "$" => "", |
| 168 | " " => " ", |
| 169 | " " => " ", |
| 170 | "#" => "", |
| 171 | ); |
| 172 | $result = explode(",", strtr($line, $replacements)); |
| 173 | $result = array_map("trim", $result); |
| 174 | $result = array_filter($result, "strlen"); |
| 175 | return array_unique($result); |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | @brief parses the member information form doxygen xml |