DOM: Aligned comments with Lexer

This commit is contained in:
Paul Beckingham
2015-07-26 12:08:40 -04:00
parent 18295a3b32
commit 58edbb9630

View File

@@ -52,15 +52,15 @@ DOM::~DOM ()
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// DOM Supported References: // DOM Supported References:
//
// Configuration:
// rc.<name> // rc.<name>
// //
// System:
// context.program // context.program
// context.args // context.args
// context.width // context.width
// context.height // context.height
//
// TODO stats.<name> <-- context.stats
//
// system.version // system.version
// system.os // system.os
// //
@@ -170,11 +170,15 @@ bool DOM::get (const std::string& name, Variant& value)
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// DOM Supported References: // DOM Supported References:
// //
// Relative or absolute attribute:
// <attribute> // <attribute>
// <id>.<attribute> // <id>.<attribute>
// <uuid>.<attribute> // <uuid>.<attribute>
// //
// For certain attributes: // Single tag:
// tags.<word>
//
// Date type:
// <date>.year // <date>.year
// <date>.month // <date>.month
// <date>.day // <date>.day
@@ -185,18 +189,8 @@ bool DOM::get (const std::string& name, Variant& value)
// <date>.minute // <date>.minute
// <date>.second // <date>.second
// //
// tags.<literal> Includes virtual tags // Annotations (entry is a date):
//
// annotations.<N>.entry // annotations.<N>.entry
// annotations.<N>.entry.year
// annotations.<N>.entry.month
// annotations.<N>.entry.day
// annotations.<N>.entry.week
// annotations.<N>.entry.weekday
// annotations.<N>.entry.julian
// annotations.<N>.entry.hour
// annotations.<N>.entry.minute
// annotations.<N>.entry.second
// annotations.<N>.description // annotations.<N>.description
// //
bool DOM::get (const std::string& name, const Task& task, Variant& value) bool DOM::get (const std::string& name, const Task& task, Variant& value)