XML Bug: attributes have extra prefixes(s:s:s:title)
A universal P2P file sharing client for Windows
Brought to you by:
raspopov
Some attributes have extra prefixes(s:s:s:title):
<metadata xmlns:s="http://www.shareaza.com/schemas/application.xsd">
<s:application s:company="Shareaza Development Team" s:version="2.7.9.1" s:comments="Shareaza Ultimate File Sharing" s:s:s:title="Shareaza" s:originalFileName="Shareaza.exe" s:s:os="Windows" s:fileVersion="2.7.9.1" s:s:fileDescription="Shareaza Ultimate File Sharing" s:s:copyright="Copyright © Shareaza Development Team, 2002-2016. All rights reserved."/>
</metadata>
This from file list: "/gnutella/browse/v1"
Prefixes for attributes does not need. They have empty namespace by default.
Prefixes for elemets can be omnited in that way:
<metadata>
<application xmlns="http://www.shareaza.com/schemas/application.xsd" company="Shareaza Development Team" version="2.7.9.1" comments="Shareaza Ultimate File Sharing" title="Shareaza" originalFileName="Shareaza.exe" os="Windows" fileVersion="2.7.9.1" fileDescription="Shareaza Ultimate File Sharing" copyright="Copyright © Shareaza Development Team, 2002-2016. All rights reserved."/>
</metadata>
And "http://www.shareaza.com/schemas/folder.xsd" does not have element "metadata".