RM_Title_Flag
This enumerated type defines the information that appears in the title
attribute in the <ins>
and <del>
tags for the eFlag
member of the KV_RM_Title
structure. This applies when revision information is enabled and included in the HTML output.
Definition
typedef enum
{
RMT_Off = 0,
RMT_Author,
RMT_Datetime,
RMT_AuthorDatetime
}
RM_Title_Flag;
Enumerators
RMT_Off
|
A title attribute is not included in the <ins> and <del> tags. This would generate markup similar to the following:
<ins cite="mailto:JohnD" datetime="2006-04-24T14:47:00">This text was added</ins>
|
RMT_Author
|
The reviewer’s name is generated in the title attribute of the <ins> and <del> tags. This would generate markup similar to the following:
<ins title="Inserted: JohnD" cite="mailto:JohnD" datetime="2006-04-24T14:47:00">This text was added</ins>
|
RMT_Datetime
|
The date and time is included in the title attribute of the <ins> and <del> tags. The date is in ISO-8601 format: YYYY-MM-DDThh:mm:ss . This would generate markup similar to the following:
<ins title="Inserted: 2006-04-24Tl4:47:00" cite="mailto:JohnD" datetime="2006-04-24T14:47:00">This text was added</ins>
|
RMT_AuthorDatetime
|
The reviewer’s name, date, and time are included in the title attribute of the <ins> and <del> tags. This would generate markup similar to the following:
<ins title="Inserted: JohnD, 2006-04-24Tl4:47:00" cite="mailto:JohnD" datetime="2006-04-24T14:47:00">This text was added</ins>
This is the default.
|