search for: ribut

Displaying 3 results from an estimated 3 matches for "ribut".

Did you mean: libut
2005 Mar 28
1
Retrieving Playing Stats
...our mountpoint $xml_parser = xml_parser_create(); xml_parse_into_struct($xml_parser, $data, $vals, $index); xml_parser_free($xml_parser); $params = array(); $level = array(); foreach ($vals as $xml_elem) { if ($xml_elem['type'] == 'open') { if (array_key_exists('attributes',$xml_elem)) { list($level[$xml_elem['level']],$extra) = array_values($xml_elem['att ributes']); } else { $level[$xml_elem['level']] = $xml_elem['tag']; } } if ($xml_elem['type'] == 'complete'...
2005 Feb 05
17
debian python-install.patch (3 of 5)
Name: python-install.patch Description: Use --root instead of --home --home causes python''s distutils to install into /usr/lib/python/, while --root causes it to install into /usr/lib/python$ver/site-packages, which is the more correct location. Signed-off-by: Adam Heath <doogie@brainfood.com> DiffStat: tools/python/Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2
2005 Mar 28
0
Retrieving Playing Stats
...create(); > xml_parse_into_struct($xml_parser, $data, $vals, $index); > xml_parser_free($xml_parser); > > $params = array(); > $level = array(); > foreach ($vals as $xml_elem) { > if ($xml_elem['type'] == 'open') { > if (array_key_exists('attributes',$xml_elem)) { > list($level[$xml_elem['level']],$extra) = > array_values($xml_elem['att > ributes']); > } else { > $level[$xml_elem['level']] = $xml_elem['tag']; > } > } > if ($xml_el...