{= include("docs.util"); start_docs_page(docs.technical_manual.page_titles.newsletters); =}
![]() |
Sawmill Newsletter December 15, 2006 |
orders = { 12345 = { customer_name = "John Jones" item = "Mouse" cost = "15.00" } 12346 = { customer_name = "Sue Smith" item = "Monitor" cost = "129.00" } } |
if (matches_regular_expression(page, '^/store/thanks_for_buying.html[?]order_id=([0-9]+)')) then ( customer_name = node_value(subnode_by_name(subnode_by_name('orders', \$1), 'customer_name')); item = node_value(subnode_by_name(subnode_by_name('orders', \$1), 'item')); ); |
cost = { label = "cost" type = "float" log_field = "cost" display_format_type = "two_digit_fixed" suppress_top = "0" suppress_bottom = "2" } # cost |
if (matches_regular_expression(page, '^/store/thanks_for_buying.html[?]order_id=([0-9]+)')) then ( customer_name = node_value(subnode_by_name(subnode_by_name('orders', \$1), 'customer_name')); item = node_value(subnode_by_name(subnode_by_name('orders', \$1), 'item')); cost = node_value(subnode_by_name(subnode_by_name('cost', \$1), 'cost')); ); |