| | |
| | | - Removed some debuggers (echo ...) |
| | | File altered by Aleksander Machniak <alec@alec.pl> |
| | | - trim(chop()) replaced by trim() |
| | | - added iil_Escape() with support for " and \ in folder names |
| | | - added iil_Escape()/iil_UnEscape() with support for " and \ in folder names |
| | | - support \ character in username in iil_C_Login() |
| | | - fixed iil_MultLine(): use iil_ReadBytes() instead of iil_ReadLine() |
| | | - fixed iil_C_FetchStructureString() to handle many literal strings in response |
| | |
| | | return strtr($string, array('"'=>'\\"', '\\' => '\\\\')); |
| | | } |
| | | |
| | | function iil_UnEscape($string) |
| | | { |
| | | return strtr($string, array('\\"'=>'"', '\\\\' => '\\')); |
| | | } |
| | | |
| | | function iil_C_GetCapability(&$conn, $name) |
| | | { |
| | | if (in_array($name, $conn->capability)) { |
| | |
| | | $line = iil_ReadLine($conn->fp, 1024); |
| | | if (iil_StartsWith($line, '* NAMESPACE')) { |
| | | $i = 0; |
| | | $line = iil_UnEscape($line); |
| | | $data = iil_ParseNamespace2(substr($line,11), $i, 0, 0); |
| | | } |
| | | } while (!iil_StartsWith($line, 'ns1', true)); |
| | |
| | | $line=iil_ReadLine($fp, 500); |
| | | if ($line[0] == '*') { |
| | | $line = rtrim($line); |
| | | $a=iil_ExplodeQuotedString(' ', $line); |
| | | $a=iil_ExplodeQuotedString(' ', iil_UnEscape($line)); |
| | | if ($a[0] == '*') { |
| | | $delimiter = str_replace('"', '', $a[count($a)-2]); |
| | | } |
| | |
| | | if (strlen($delimiter)>0) { |
| | | return $delimiter; |
| | | } |
| | | |
| | | |
| | | //if that fails, try namespace extension |
| | | //try to fetch namespace data |
| | | iil_PutLine($conn->fp, "ns1 NAMESPACE"); |
| | |
| | | $line = iil_ReadLine($conn->fp, 1024); |
| | | if (iil_StartsWith($line, '* NAMESPACE')) { |
| | | $i = 0; |
| | | $line = iil_UnEscape($line); |
| | | $data = iil_ParseNamespace2(substr($line,11), $i, 0, 0); |
| | | } |
| | | } while (!iil_StartsWith($line, 'ns1', true)); |