i've updated my Trac to 1.0 after installing the newest version of agilo for trac.
It is recommend to deactivate the "Trac Reports" Component to use the new "Query" Component.
It will be great to create new menu entries in the tickets sidebar section for specific Queries.
So its an empty Headline and some people will annoying me shortly ;)
This is actually a bug, we have implemented a fix and it will be part of the next Agilo release.
In the meantime, you can apply a patch by replacing these two lines
24. $(".tree.tickets").load(url + "/report .listing.reports td.title a:lt(10)", function() {
25. $(".tree.tickets a").wrap("<li></li>");
with these
24. $(".tree.tickets").load(url + "/report .reports h3 a[title='View report']:lt(10)", function() {
25. $(".tree.tickets a").wrap("<li></li>").find('em').remove();
in the file agilo/htdocs/js/sidebar.js
This will still pull the Trac reports though, and not the queries. For that we will have to come up with a different solution.
Another point is the broken layout on some pages (Main Menu icons missing...).
If you need any additional information pls ask here.