388 |
|
default: |
389 |
|
return item.data; |
390 |
|
case InputType::INPUT_Binary: |
391 |
< |
_foreach (_L<ext::String>, atom, item.data.Split(' ')) string.InsertLast(Binary(*atom, false).convert<ext::CodePoint>(false)); |
391 |
> |
_foreach (_L<ext::String>, atom, item.data.Split(' ')) string.InsertLast(Binary(*atom, false).convert<uint32_t>(false)); |
392 |
|
break; |
393 |
|
case InputType::INPUT_Hexadecimal: |
394 |
< |
_foreach (_L<ext::String>, atom, item.data.Split(' ')) string.InsertLast(Hexadecimal(*atom, false).convert<ext::CodePoint>(false)); |
394 |
> |
_foreach (_L<ext::String>, atom, item.data.Split(' ')) string.InsertLast(Hexadecimal(*atom, false).convert<uint32_t>(false)); |
395 |
|
} |
396 |
|
|
397 |
|
return string; |
403 |
|
xhtml.OutputText(lexical_cast<ext::String>(type)); |
404 |
|
} |
405 |
|
|
406 |
– |
// XXX: damn, this one is really quite screwy |
406 |
|
template <> |
407 |
|
void Represent::normal(xml::TextWriter& xhtml, const char& char_) |
408 |
|
{ |