peixinchen

Results 4 issues of peixinchen

``` There was 1 error: 1) SomeTestCase::testMethod PHPUnit_Framework_Exception: [Exception] Serialization of 'Closure' is not allowed Caused by exception 'ErrorException' with message 'unserialize(): Error at offset 0 of 186 bytes' in...

waiting-for-feedback

```cpp template inline void Serializer::output_type(T& t) { int len = sizeof(T); char* d = new char[len]; if (!m_iodevice.is_eof()){ memcpy(d, m_iodevice.current(), len); m_iodevice.offset(len); byte_orser(d, len); t = *reinterpret_cast(&d[0]); } delete []...

1. fix a bug. fix templatepath if USING_BLUEPRINTS is True 2. add some error message. 1) can't find info.json 2) info.json is invalid json format

Functions only take UTF-8 encoding string, so can't handler XML data like '', i must iconv XML string to UTF-8 and change the XML header encoding to UTF-8, too terrible.