I tried what you suggested. I came to the conclusion that I should wait and see if you come up with anything. ^o^
If curious, here is what I did (that didn't work at all):
I found $:/core/ui/SideBar/Recent (tagged with $:/tags/SideBar)
containing:
<$macrocall $name="timeline" format={{$:/language/RecentChanges/DateFormat}}/>
I found $:/core/ui/MoreSideBar/Recent (tagged with $:/tags/MoreSideBar)
containing:
<$macrocall $name="timeline" format={{$:/language/RecentChanges/DateFormat}}/>
$:/core/macros/timeline (tagged with $:/tags/Macro)
contains
\define timeline-title()
\whitespace trim
<!-- Override this macro with a global macro
of the same name if you need to change
how titles are displayed on the timeline
-->
<$view field="title"/>
\end
\define timeline(limit:"100",format:"DDth MMM YYYY",subfilter:"",dateField:"modified")
<div class="tc-timeline">
<$list filter="[!is[system]$subfilter$has[$dateField$]!sort[$dateField$]limit[$limit$]eachday[$dateField$]]">
<div class="tc-menu-list-item">
<$view field="$dateField$" format="date" template="$format$"/>
<$list filter="[sameday:$dateField${!!$dateField$}!is[system]$subfilter$!sort[$dateField$]]">
<div class="tc-menu-list-subitem">
<$link to={{!!title}}><<timeline-title>></$link>
</div>
</$list>
</div>
</$list>
</div>
\end
So I created a clone like this:
$:/core/ui/SideBar/Post-Queue (tagged with $:/tags/SideBar)
containing:
<$macrocall $name="timeline-2" format={{$:/language/RecentChanges/DateFormat}}/>
and a clone like this $:/core/ui/MoreSideBar/Post-Queue (tagged with $:/tags/MoreSideBar) containing:
<$macrocall $name="timeline-2" format={{$:/language/RecentChanges/DateFormat}}/>
And a clone like this: $:/core/macros/timeline-2 (tagged with $:/tags/Macro)
containing:
\define timeline-title()
\whitespace trim
<!-- Override this macro with a global macro
of the same name if you need to change
how titles are displayed on the timeline
-->
<$view field="title"/>
\end
\define timeline(limit:"100",format:"DDth MMM YYYY",subfilter:"",dateField:"modified")
<div class="tc-timeline">
<$list filter="[!is[system]$subfilter$has[$dateField$]!sort[$dateField$]limit[$limit$]eachday[$dateField$]]">
<div class="tc-menu-list-item">
<$view field="journal-date" format="date" template="0WW"/>
<<now "0WW">>
<$list filter="[sameday:$dateField${!!$dateField$}!is[system]$subfilter$!sort[$dateField$]]">
<div class="tc-menu-list-subitem">
<$link to={{!!title}}><<timeline-title>></$link>
</div>
</$list>
</div>
</$list>
</div>
\end