Error
We were unable to find the page /dayHistory/headlines-random-template.




2010 Roster

No. Player Yr. Pos. Hgt. Wgt. B-T Hometown/High School
There was a problem with a Velocity script
Page/sports/roster-baseball-template
ErrorInvocation of method 'sortedBy' in class com.prestosports.content.HeadlinesSorter threw exception java.lang.UnsupportedOperationException: ComparatorChains must contain at least one Comparator @ roster-baseball-template[22,34]
Page source:
1: <center>
2: #if ($page.thumbnailURL)<img src="$page.thumbnailURL">#end
3: <br>
4: <br>
5: <b>$page.title</b>
6: 
7: </center>
8: <br>
9: <table  align="center">
10: <table class="roster">
11: 
12:   <tr class="roster-header">
13:     <td>No.</td>
14:     <td>Player</td>
15:     <td>Yr.</td>
16:     <td>Pos.</td>
17:     <td>Hgt.</td>
18:     <td>Wgt.</td>
19:     <td>B-T</td>
20:     <td>Hometown/High School</td>
21:   </tr>
22: #foreach ($bioinfo in $headlines.sortedBy("custom1"))
23:   #set ($row = ($velocityCount + 2) % 2)
24:   #set ($bio = $bioinfo.getDataAsObject().getAttributes())
25:   <tr class="roster-row$row">
26:     <td>$!bio.get("custom1")</td>
27:     <td><a href="$bioinfo.url">$!bio.get("full_name")</a></td>
28:     <td>$!bio.get("year")</td>
29:     <td>$!bio.get("position")</td>
30:     <td>$!bio.get("height")</td>
31:     <td>$!bio.get("weight")</td>
32:     <td>$!bio.get("custom2")</td>
33:     <td>$!bio.get("hometown")/$!bio.get("highschool")</td>
34:   </tr>
35: #end
36: </table>
37: 
38: $wiki
39: 
40: <br>
41: #set ($footer = "${page.url}-footer")
42: 
43: $website.include($footer)