If you want to show all entry links sorted by date, no matter what category they are in, you can use a new index template and this code:
CODE
<MTEntries>
<a href="<$MTEntryLink$>#<$MTEntryID pad="1"$>"><$MTEntryTitle$></a><br />
</MTEntries>
<a href="<$MTEntryLink$>#<$MTEntryID pad="1"$>"><$MTEntryTitle$></a><br />
</MTEntries>
That should give a list of all of the entries. If you want to show what date and what category they are in on this listing, you could do this:
CODE
<MTEntries>
<$MTEntryDate$>: <a href="<$MTEntryLink$>#<$MTEntryID pad="1"$>"><$MTEntryTitle$></a> - <$MTEntryCategory$><br />
</MTEntries>
<$MTEntryDate$>: <a href="<$MTEntryLink$>#<$MTEntryID pad="1"$>"><$MTEntryTitle$></a> - <$MTEntryCategory$><br />
</MTEntries>
If I didn't interpret your request correctly, please post back and I'll try again!!!
Kristine