RoundedTable: RoundedTable { contentAlign = "center"; tableWidth = 450; title = tableTitle; } SnapshotTable: RoundedTable { contentAlign = "LEFT"; tableWidth = 400; title = "Snapshot"; } SQLTransactionTable: RoundedTable { tableWidth = 400; title = "SQL Transactions"; contentAlign = "LEFT"; } LastSQLStringIsEmpty: WOConditional { condition = lastSQLStringIsEmpty; } LastSQLStringIsNotEmpty: WOConditional { condition = lastSQLStringIsEmpty; negate = true; } CurrentSnapshot: WOConditional { condition = currentSnapshot; } NotCurrentSnapshot: WOConditional { condition = currentSnapshot; negate = true; } KeyRepitition: WODictionaryRepetition { dictionary = currentSnapshot; item = currentValue; key = currentKey; } EditingContextView: EditingContextView { editingContext = currentEditingContext; } CurrentFetchTimestamp: WOString { dateformat = "%b %d, %Y %I:%M:%S %p"; value = currentFetchTimestamp; } CurrentValue: WOString { value = currentValue; } CurrentKey: WOString { value = currentKey; } LastSQLString: WOString { value = lastSQLString; escapeHTML = false; } Table: WOTable { cellVAlign = "top"; item = currentEditingContext; list = editingContexts; maxColumns = 3; }