Here are the manuals that I know of, the following may help, but probably not...
How to Create Your Own Custom Navigation Trees
http://twonkyforum.com/viewtopic.php?f=24&t=6219
TMS-View-Configuration.zip
http://twonkyforum.com/download/file.php?id=78
TMS-View-Configuration addendum.zip
http://twonkyforum.com/download/file.php?id=404
I know what your trying to do, and it used to be possible up to the 5.0.x versions
anything past that hence 5.1.x or 6x it is not possible
However I have been doing some mucking around that almost worked, but it only accomplish's making twokyserver going into 100% cpu usage
First what I did as an example to see if I could fake things out, was to change the id on the view, it did NOT work
Code: Select all
<view name='advanceddefault' path='advanced.view'>
<navtree>
<container id='music/folders'>
</container>
<container id='picture' >
</container>
<container id='video' >
</container>
</navtree>
</view>
Second I tried to modify it the view-definitions.xml music/folders section
I changed the id='music/folders' to become id='music'
This actually worked, BUT, it then threw twonky into a 100% cpu load
My guess is that the parser is now in some sort of a loop
Code: Select all
<view name='base' viewlist='advanced,folder,ipodlike,simple,classified,playlists,mobile' guilist='advanceddefault,ipodlike,simpledefault,byfolder,mobile'>
<navtree sortcriteria='+upnp:originalTrackNumber'>
<container name='music' id='music' upnp:originalTrackNumber='1' createClass='object.item.audioItem.musicTrack,object.item.audioItem.online.musicTrack'>
<container name='byfolder' id='music' class='object.container.storageFolder' createClass='object.item.audioItem.musicTrack'>
<container buildon='res' createClass='object.item.audioItem.musicTrack' class='object.container.storageFolder' />
</container>
</container>
</navtree>
</view>
So basically we have a double whammy and we are basically screwed!
What I have learned from all of the wasted countless hours of trying!
you can not have the navtree populated with containers that use buildon, also they can only be of the id music, picture, or video
you can not have a 4th root container in the navtree, as they can only be of the id music, picture, or video
You can not have a root container (music, picture, or video) populated with buildon, they can only be a container of containers
Post 5.0.x twonky has really limited what we can do at the root level
I wish someone would prove this wrong who is using 5.1.x and higher of twonky