I have almost solved the svg problem. It was a quickbook bug. We have to add a format attribute to the imagedata object if we want docbook to work.
Here is the initial result: http://tinyurl.com/2l4ors/images.html It is rendered with scroll bars (??). I have to investigate more about this. Best regards Matias ----------------------------------------------------------------------------------------------- RCS file: /cvsroot/boost/boost/tools/quickbook/detail/actions.cpp,v retrieving revision 1.51 diff -r1.51 actions.cpp 15a16,17 > #include <boost/algorithm/string/case_conv.hpp> > #include <boost/algorithm/string/erase.hpp> 357c359,371 < phrase << "\"></imagedata></imageobject>"; --- > phrase << "\" "; > > fs::path::string_type img_ext = fs::extension(img_path); > if( img_ext != "" ) > { > boost::algorithm::erase_head( img_ext, 1 ); > boost::algorithm::to_upper ( img_ext ); > phrase << "format=\""; > detail::print_string(img_ext, phrase.get()); > phrase << "\" "; > } > > phrase << "></imagedata></imageobject>"; ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ Boost-docs mailing list [email protected] Unsubscribe and other administrative requests: https://lists.sourceforge.net/lists/listinfo/boost-docs
