Hi,
I wonder if it is possible to display more than 100 recent entries. The 
following code just reveals 100 max.

#set($numEntries = 500)
#set($entriesList = $model.weblog.getRecentWeblogEntries(nil, $numEntries))
#if($entriesList.size() > 0)
  <ol>
  #foreach ($entry in $entriesList)
    <li><a 
href="$entry.permalink">$entry.title</a>&nbsp;<sub>$utils.formatDate($entry.pubTime,
 "MMM yyyy")</sub></li>
  #end
  </ol>
#else
  <p class="null">No Entries</p>
#end

thanks
  Matthias
  http://blogs.sun.com/mprove/

Reply via email to