Advertisement
Guest User

Untitled

a guest
Feb 19th, 2014
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.48 KB | None | 0 0
  1. <!-- MHonArc Resource File -->
  2. <!-- $Id: date.mrc,v 1.4 2003/10/06 22:04:23 ehood Exp $
  3.     Earl Hood <earl @ earlhood . com>
  4.  -->
  5. <!-- This resource file utilizes the day grouping feature of MHonArc
  6.     to format the main index.
  7.  -->
  8.  
  9. <!--    Specify date sorting.
  10.  -->
  11. <Sort>
  12.  
  13. <!--    Set USELOCALTIME since local date formats are used when displaying
  14.     dates.
  15.  -->
  16. <UseLocalTime>
  17.  
  18. <!--    Define message local date format to print day of the week, month,
  19.     month day, and year.  Format used for day group heading.
  20.  -->
  21. <MsgLocalDateFmt>
  22. %B %d, %y
  23. </MsgLocalDateFmt>
  24.  
  25. <!--    Redefine LISTBEGIN since a table will be used for index listing.
  26.  -->
  27. <ListBegin>
  28. <UL>
  29. <LI><A HREF="$TIDXFNAME$">Thread Index</A></LI>
  30. </UL>
  31. <HR>
  32. <table border=0>
  33. </ListBegin>
  34.  
  35. <!--    DAYBEGIN defines the markup to be printed when a new day group
  36.     is started.
  37.  -->
  38. <DayBegin>
  39. <tr><td colspan=4><strong>$MSGLOCALDATE$</strong></td></tr>
  40. </DayBegin>
  41.  
  42. <!--    DAYBEND defines the markup to be printed when a day group
  43.     ends.  No markup is needed in this case, so we leave it blank.
  44.  -->
  45. <DayEnd>
  46.  
  47. </DayEnd>
  48.  
  49. <!--    Define LITEMPLATE to display the time of day the message was
  50.     sent, message subject, author, and any annotation for the
  51.     message.
  52.  -->
  53. <LiTemplate>
  54. <tr valign=top>
  55. <td>$MSGLOCALDATE(CUR;%H:%M)$</td>
  56. <td><b>$SUBJECT$</b></td>
  57. <td>$FROMNAME$</td>
  58. <td>$NOTE$</td>
  59. <td>$EML$</td>
  60. </tr>
  61. </LiTemplate>
  62.  
  63. <!--    Define LISTEND to close table
  64.  -->
  65. <ListEnd>
  66. </table>
  67. </ListEnd>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement