Activity log for bug #54226

Date Who What changed Old value New value Message
2006-07-27 07:42:57 wouter bolsterlee bug added bug
2007-04-13 19:53:05 wouter bolsterlee anewt: importance Undecided Wishlist
2007-04-13 19:53:05 wouter bolsterlee anewt: statusexplanation
2007-08-07 14:27:53 wouter bolsterlee anewt: status New In Progress
2007-08-07 14:27:53 wouter bolsterlee anewt: assignee uws
2007-08-07 14:27:53 wouter bolsterlee anewt: statusexplanation Working on to_string, to_array is not so useful I think.
2007-08-07 14:28:05 wouter bolsterlee anewt: status In Progress Fix Released
2007-08-07 14:28:05 wouter bolsterlee anewt: statusexplanation Working on to_string, to_array is not so useful I think. 581 Wouter Bolsterlee 2007-08-07 Implemented generic to_string() function The new global to_string() function renders various objects to a string. This function creates a string from various types of objects by applying various conversion methods. Supported data types: - Simple values: strings, integers, floats, boolean (0 or 1). - Any object implementing a render(), to_xhtml(), to_string() or toString() method. - Numerical arrays containing any of the supported types are recursively converted to string values, separated by newlines. An error is thrown if the passed object cannot be handled. Some test cases are included. This fixes bug #54226.