3 Add SONY Bravia support
4 http
://blog-imgs-30.fc2.com/h/o/r/horip/mediatomb-0_12_1_bravia_support_0_1_patch.txt
6 --- src
/upnp_xml
.cc
.orig
2010-03-25 14:58:11.000000000 +0000
8 @@
-210,6 +210,21 @@ Ref
<Element
> UpnpXML_RenderDeviceDescrip
9 root
->appendElementChild(specVersion
);
11 Ref
<Element
> device(new Element(_("device")));
13 + Ref
<Element
> dlnaspec(new Element(_("dlna:X_DLNADOC")));
14 + dlnaspec
->setAttribute(_("xmlns:dlna"), _("urn:schemas-dlna-org:device-1-0"));
15 + dlnaspec
->setText(_("DMS-1.50"));
16 + device
->appendElementChild(dlnaspec
);
18 + Ref
<Element
> dlnaspec2(new Element(_("dlna:X_DLNADOC")));
19 + dlnaspec2
->setAttribute(_("xmlns:dlna"), _("urn:schemas-dlna-org:device-1-0"));
20 + dlnaspec2
->setText(_("M-DMS-1.50"));
21 + device
->appendElementChild(dlnaspec2
);
23 + Ref
<Element
> dlnaspec3(new Element(_("dlna:X_DLNACAP")));
24 + dlnaspec3
->setAttribute(_("xmlns:dlna"), _("urn:schemas-dlna-org:device-1-0"));
25 + dlnaspec3
->setText(_("av-upload,image-upload,audio-upload"));
26 + device
->appendElementChild(dlnaspec3
);
28 #ifdef EXTEND_PROTOCOLINFO
29 if (config
->getBoolOption(CFG_SERVER_EXTEND_PROTOCOLINFO
))