diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-08 21:41:53 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-05-08 21:41:53 -0300 |
commit | 0a63da7081bd1227c5788000349cf7ac03f8e107 (patch) | |
tree | c03b15440a99a113ecc69905199b3a527c9cbd1b /src | |
parent | b24efa3885637d953892ccf718662aa693eaa879 (diff) | |
download | blogc-0a63da7081bd1227c5788000349cf7ac03f8e107.tar.gz blogc-0a63da7081bd1227c5788000349cf7ac03f8e107.tar.bz2 blogc-0a63da7081bd1227c5788000349cf7ac03f8e107.zip |
renderer: respect local scope
Diffstat (limited to 'src')
-rw-r--r-- | src/renderer.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/renderer.c b/src/renderer.c index ac269b8..ccd6c04 100644 --- a/src/renderer.c +++ b/src/renderer.c @@ -89,6 +89,7 @@ blogc_render(b_slist_t *tmpl, b_slist_t *sources, b_trie_t *config, bool listing bool if_not = false; bool defined = false; + bool inside_block = false; b_slist_t *tmp = tmpl; while (tmp != NULL) { @@ -102,6 +103,7 @@ blogc_render(b_slist_t *tmpl, b_slist_t *sources, b_trie_t *config, bool listing break; case BLOGC_TEMPLATE_BLOCK_STMT: + inside_block = true; if_count = 0; if (0 == strcmp("entry", stmt->value)) { if (listing) { @@ -142,7 +144,8 @@ blogc_render(b_slist_t *tmpl, b_slist_t *sources, b_trie_t *config, bool listing case BLOGC_TEMPLATE_VARIABLE_STMT: if (stmt->value != NULL) { if (0 == strcmp(stmt->value, "DATE_FORMATTED")) { - config_value2 = blogc_format_date(config, tmp_source); + config_value2 = blogc_format_date(config, + inside_block ? tmp_source : NULL); if (config_value2 != NULL) { b_string_append(str, config_value2); free(config_value2); @@ -151,7 +154,8 @@ blogc_render(b_slist_t *tmpl, b_slist_t *sources, b_trie_t *config, bool listing } } else { - config_value = blogc_get_variable(stmt->value, config, tmp_source); + config_value = blogc_get_variable(stmt->value, config, + inside_block ? tmp_source : NULL); if (config_value != NULL) b_string_append(str, config_value); } @@ -159,6 +163,7 @@ blogc_render(b_slist_t *tmpl, b_slist_t *sources, b_trie_t *config, bool listing break; case BLOGC_TEMPLATE_ENDBLOCK_STMT: + inside_block = false; if (listing_start != NULL && current_source != NULL) { current_source = current_source->next; if (current_source != NULL) { |