Hi, sorry for the vague title, but this problem needed a little explanation...
I just started messing around with custom views in the database, and wanted a view that grouped my shows by who's watching them. So I added a field WatchedBy in the online_series-table, and used this view:
Surprisingly enough, this worked without a hitch. Then I thought it would be fun if I could tag a series with two names, so both me and my brother could have the series in "our" group. I noticed that Genre is split up this way, one show with several genres. So I inserted "|Me|My brother|" in the WatchedBy-field of a show, but it doesn't get split up, only shows as a seperate group called "|Me|My brother|". Is there anyway I can make this work without altering the source code? Skimmed through some of the source-code, but couldn't find anything separating the Genre-field from other fields. Also noticed Channel doesn't get split up (The Boondocks is tagged with two channels, Cartoon Network and Adult Swim), so I guess there's something specifying wich fields should be split, an wich shouldn't? Tried grouping a view by actor too, that worked great...
I just started messing around with custom views in the database, and wanted a view that grouped my shows by who's watching them. So I added a field WatchedBy in the online_series-table, and used this view:
Code:
group:<Series.WatchedBy><;><;><;><nextStep>series<;><;><Series.Pretty_Name>;asc<;><nextStep>season<;><;><Season.seasonIndex>;asc<;><nextStep>episode<;><;><Episode.EpisodeIndex>;asc<;>
Surprisingly enough, this worked without a hitch. Then I thought it would be fun if I could tag a series with two names, so both me and my brother could have the series in "our" group. I noticed that Genre is split up this way, one show with several genres. So I inserted "|Me|My brother|" in the WatchedBy-field of a show, but it doesn't get split up, only shows as a seperate group called "|Me|My brother|". Is there anyway I can make this work without altering the source code? Skimmed through some of the source-code, but couldn't find anything separating the Genre-field from other fields. Also noticed Channel doesn't get split up (The Boondocks is tagged with two channels, Cartoon Network and Adult Swim), so I guess there's something specifying wich fields should be split, an wich shouldn't? Tried grouping a view by actor too, that worked great...
Norway