|
Export Template Examples |
|
|
DayNotez User Interface > Dialogs > Export > Export Templates > Export Template Examples Here are several example export templates.
Simple plain text file
DayNotez Export - <macro name="Now" format="c"/> <if name="IsFiltered">Filter: <macro name="FilterName"> - <macro name="FilterDesc"></if>
<repeat name="Notes"> ===================================== Date: <macro name="EntryDate"/> @ <macro name="EntryTime"/> Category: <macro name="CategoryName"/> <if name="HasTags">Tags: <macro name="Tags"/></if name="HasTags"> <if name="HasContact">Contact: <macro name="ContactName"/></if name="HasContact"> <if name="IsPrivate"> [Private]</if name="IsPrivate"><if name="IsFollowup"> [Followup]</if name="IsFollowup">
<macro name="Note"/>
</repeat name="Notes">
HTML file (note the default output file name, and conversion of DayNotez color markup to HTML font tag)
<params> <param name="OutputFileName" value="DayNotez.html"/>
<translation name="HTML_Translation_Table" default="macro"> <replace string="<c=" with="<font color="/> <replace string="</c>" with="</font>"/> <replace string="#22" with="""/> <replace string="&" with="&"/> <replace string="#0D#0D" with="<br>"/> <replace string="#0A#0A" with="<br>"/> <replace string="#09" with=" "/> </translation name="HTML_Translation_Table"> </params>
<HTML>
<Head> <Title> My DayNotez Entries </Title>
<style> </style> </HEAD>
<BODY> <div align="Center"><H1>DayNotez</H1></div>
<TABLE Width="100%" Border=0 Style="Font-weight:bold;Font-Size:smaller"> <TR> <TD align="left"><macro name="UserName"/></TD> <TD align="right"><macro name="Now" format="c"/></TD> </TR> </TABLE>
<repeat name="Notes">
<TABLE Width=100% border=1> <TR> <TD> <TABLE Width=100% Border=0 style="Font-size:smaller;background:#eeeeee"> <TR> <!-- TD>UniqueID: <macro name="NoteID"/></TD --> <td rowspan="2" style="background:#<macro name="CategoryColor"/>" width="10"> </td> <TD width="33%"><b>Date:</b> <macro name="EntryDate" format="ddd"/> <macro name="EntryDate"/></TD> <TD width="33%"><b>Contact:</b> <macro name="ContactName"/></TD> <TD><b>Category:</b> <macro name="CategoryName"/></TD> </TR> <TR> <!-- TD>Days Since: <macro name="DaysSince"/></TD><TD>Last Mod: <macro name="LastModified"/></TD --> <TD ><b>Time:</b> <macro name="EntryTime"/></TD> <TD> <if name="IsPrivate"><span style="color:red"> Private</span></if name="IsPrivate"> <if name="IsFollowup">Follow up</if name="IsFollowup"> <if name="HasTags"><font color="green"><b><repeat name="tags"> <macro name="tag"> </repeat><b></cyan></if> </TD> <TD><b>Tags:</b> <macro name="Tags"/></TD> </TR> </Table> <if name="HasAudio"><a href="./<macro name="AudioCopy"/>">Audio</a></if> </TD> </TR> <if name="HasPhotos"> <tr><td> <repeat name="photos> <img src="./<macro name="photocopy"/>"> </repeat> </td></tr> </if> <TR class="NoteRow"> <TD style="padding-left:20px;padding-top:10px" align="top" name="NoteRow"><macro name="Note"/></TD> </TR> </TABLE> <br> </repeat name="Notes">
</BODY> </HTML>
|