diff --git a/change_log.txt b/change_log.txt index 86139cbd..0728b23f 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,6 @@ +11/09/2009 +- lexer/parser bugfix + 11/08/2009 - fixed alphanumeric array index - bugfix on complex double quoted strings diff --git a/libs/sysplugins/smarty_internal_templatelexer.php b/libs/sysplugins/smarty_internal_templatelexer.php index ffa412df..01fca1d4 100644 --- a/libs/sysplugins/smarty_internal_templatelexer.php +++ b/libs/sysplugins/smarty_internal_templatelexer.php @@ -83,7 +83,6 @@ class Smarty_Internal_Templatelexer $this->rdel = preg_quote($this->smarty->right_delimiter); $this->smarty_token_names['LDEL'] = $this->smarty->left_delimiter; $this->smarty_token_names['RDEL'] = $this->smarty->right_delimiter; - $this->ldel_count = 0; } public static function &instance($new_instance = null) { @@ -125,7 +124,8 @@ class Smarty_Internal_Templatelexer { $tokenMap = array ( 1 => 0, - 2 => 2, + 2 => 1, + 4 => 0, 5 => 0, 6 => 0, 7 => 0, @@ -136,14 +136,13 @@ class Smarty_Internal_Templatelexer 12 => 0, 13 => 0, 14 => 0, - 15 => 0, - 16 => 2, - 19 => 0, + 15 => 2, + 18 => 0, ); if ($this->counter >= strlen($this->data)) { return false; // end of input } - $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)/"; + $yy_global_pattern = "/^(\\{\\})|^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)/"; do { if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { @@ -183,21 +182,21 @@ class Smarty_Internal_Templatelexer // skip this token continue; } else { $yy_yymore_patterns = array( - 1 => array(0, "^(".$this->ldel."\\*((\\s|.)*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 2 => array(2, "^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 5 => array(2, "^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 6 => array(2, "^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 7 => array(2, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 8 => array(2, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 9 => array(2, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 10 => array(2, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 11 => array(2, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 12 => array(2, "^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 13 => array(2, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 14 => array(2, "^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 15 => array(2, "^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), - 16 => array(4, "^([\S\s]+)"), - 19 => array(4, ""), + 1 => array(0, "^(".$this->ldel."\\*([\S\s]*?)\\*".$this->rdel.")|^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 2 => array(1, "^(<\\?xml)|^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 4 => array(1, "^(<\\?php)|^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 5 => array(1, "^(<\\?=)|^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 6 => array(1, "^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 7 => array(1, "^(".$this->ldel."\/literal".$this->rdel.")|^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 8 => array(1, "^(".$this->ldel."ldelim".$this->rdel.")|^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 9 => array(1, "^(".$this->ldel."rdelim".$this->rdel.")|^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 10 => array(1, "^(".$this->ldel."\\s{1,}\/)|^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 11 => array(1, "^(".$this->ldel."\\s{1,})|^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 12 => array(1, "^(".$this->ldel."\/)|^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 13 => array(1, "^(".$this->ldel.")|^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 14 => array(1, "^(([\S\s]*?)(".$this->ldel."|<\\?))|^([\S\s]+)"), + 15 => array(3, "^([\S\s]+)"), + 18 => array(3, ""), ); // yymore is needed @@ -264,45 +263,46 @@ class Smarty_Internal_Templatelexer $this->token = Smarty_Internal_Templateparser::TP_COMMENT; } - function yy_r1_5($yy_subpatterns) + function yy_r1_4($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_XML; $this->yypushstate(self::PHP); } - function yy_r1_6($yy_subpatterns) + function yy_r1_5($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_PHP; $this->yypushstate(self::PHP); } - function yy_r1_7($yy_subpatterns) + function yy_r1_6($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_SHORTTAGSTART; $this->yypushstate(self::PHP); + } + function yy_r1_7($yy_subpatterns) + { + + $this->yypushstate(self::LITERAL); + return true; } function yy_r1_8($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; + return false; // unexspected here just ignore } function yy_r1_9($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LITERALEND; + $this->token = Smarty_Internal_Templateparser::TP_LDELIMTAG; } function yy_r1_10($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LDELIMTAG; - } - function yy_r1_11($yy_subpatterns) - { - $this->token = Smarty_Internal_Templateparser::TP_RDELIMTAG; } - function yy_r1_12($yy_subpatterns) + function yy_r1_11($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -312,7 +312,7 @@ class Smarty_Internal_Templatelexer $this->yypushstate(self::SMARTY); } } - function yy_r1_13($yy_subpatterns) + function yy_r1_12($yy_subpatterns) { if ($this->smarty->auto_literal) { @@ -322,19 +322,19 @@ class Smarty_Internal_Templatelexer $this->yypushstate(self::SMARTY); } } - function yy_r1_14($yy_subpatterns) + function yy_r1_13($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDELSLASH; $this->yypushstate(self::SMARTY); } - function yy_r1_15($yy_subpatterns) + function yy_r1_14($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_LDEL; $this->yypushstate(self::SMARTY); } - function yy_r1_16($yy_subpatterns) + function yy_r1_15($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; @@ -349,7 +349,7 @@ class Smarty_Internal_Templatelexer return; // change state after processiing token } } - function yy_r1_19($yy_subpatterns) + function yy_r1_18($yy_subpatterns) { $this->token = Smarty_Internal_Templateparser::TP_OTHER; @@ -610,12 +610,13 @@ class Smarty_Internal_Templatelexer function yy_r2_4($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LITERALSTART; + $this->yypushstate(self::LITERAL); + return true; } function yy_r2_5($yy_subpatterns) { - $this->token = Smarty_Internal_Templateparser::TP_LITERALEND; + return false; // unexspected here just ignore } function yy_r2_6($yy_subpatterns) { @@ -1089,5 +1090,146 @@ class Smarty_Internal_Templatelexer $this->token = Smarty_Internal_Templateparser::TP_OTHER; } + + function yylex4() + { + $tokenMap = array ( + 1 => 0, + 2 => 0, + 3 => 1, + 5 => 0, + ); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + $yy_global_pattern = "/^(".$this->ldel."literal".$this->rdel.")|^(".$this->ldel."\/literal".$this->rdel.")|^(([\S\s]*?)".$this->ldel."\/literal".$this->rdel.")|^([\S\s]+)/"; + + do { + if (preg_match($yy_global_pattern, substr($this->data, $this->counter), $yymatches)) { + $yysubmatches = $yymatches; + $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + if (!count($yymatches)) { + throw new Exception('Error: lexing failed because a rule matched' . + 'an empty string. Input "' . substr($this->data, + $this->counter, 5) . '... state LITERAL'); + } + next($yymatches); // skip global match + $this->token = key($yymatches); // token number + if ($tokenMap[$this->token]) { + // extract sub-patterns for passing to lex function + $yysubmatches = array_slice($yysubmatches, $this->token + 1, + $tokenMap[$this->token]); + } else { + $yysubmatches = array(); + } + $this->value = current($yymatches); // token value + $r = $this->{'yy_r4_' . $this->token}($yysubmatches); + if ($r === null) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + // accept this token + return true; + } elseif ($r === true) { + // we have changed state + // process this token in the new state + return $this->yylex(); + } elseif ($r === false) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + // skip this token + continue; + } else { $yy_yymore_patterns = array( + 1 => array(0, "^(".$this->ldel."\/literal".$this->rdel.")|^(([\S\s]*?)".$this->ldel."\/literal".$this->rdel.")|^([\S\s]+)"), + 2 => array(0, "^(([\S\s]*?)".$this->ldel."\/literal".$this->rdel.")|^([\S\s]+)"), + 3 => array(1, "^([\S\s]+)"), + 5 => array(1, ""), + ); + + // yymore is needed + do { + if (!strlen($yy_yymore_patterns[$this->token][1])) { + throw new Exception('cannot do yymore for the last token'); + } + $yysubmatches = array(); + if (preg_match('/' . $yy_yymore_patterns[$this->token][1] . '/', + substr($this->data, $this->counter), $yymatches)) { + $yysubmatches = $yymatches; + $yymatches = array_filter($yymatches, 'strlen'); // remove empty sub-patterns + next($yymatches); // skip global match + $this->token += key($yymatches) + $yy_yymore_patterns[$this->token][0]; // token number + $this->value = current($yymatches); // token value + $this->line = substr_count($this->value, "\n"); + if ($tokenMap[$this->token]) { + // extract sub-patterns for passing to lex function + $yysubmatches = array_slice($yysubmatches, $this->token + 1, + $tokenMap[$this->token]); + } else { + $yysubmatches = array(); + } + } + $r = $this->{'yy_r4_' . $this->token}($yysubmatches); + } while ($r !== null && !is_bool($r)); + if ($r === true) { + // we have changed state + // process this token in the new state + return $this->yylex(); + } elseif ($r === false) { + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + if ($this->counter >= strlen($this->data)) { + return false; // end of input + } + // skip this token + continue; + } else { + // accept + $this->counter += strlen($this->value); + $this->line += substr_count($this->value, "\n"); + return true; + } + } + } else { + throw new Exception('Unexpected input at line' . $this->line . + ': ' . $this->data[$this->counter]); + } + break; + } while (true); + + } // end function + + + const LITERAL = 4; + function yy_r4_1($yy_subpatterns) + { + + return false; + } + function yy_r4_2($yy_subpatterns) + { + + $this->yypopstate(); + return false; + } + function yy_r4_3($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + $this->value = substr($this->value,0,-strlen($this->smarty->left_delimiter)-strlen($this->smarty->right_delimiter)-8); + $this->yypopstate(); + if (strlen($this->value) == 0) { + return false; // change state directly + } else { + return; // change state after processiing token + } + } + function yy_r4_5($yy_subpatterns) + { + + $this->token = Smarty_Internal_Templateparser::TP_OTHER; + } + } ?> diff --git a/libs/sysplugins/smarty_internal_templateparser.php b/libs/sysplugins/smarty_internal_templateparser.php index a2c302c9..acdeef60 100644 --- a/libs/sysplugins/smarty_internal_templateparser.php +++ b/libs/sysplugins/smarty_internal_templateparser.php @@ -224,9 +224,9 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph const TP_QMARK = 70; const TP_TYPECAST = 71; const TP_SINGLEQUOTESTRING = 72; - const YY_NO_ACTION = 494; - const YY_ACCEPT_ACTION = 493; - const YY_ERROR_ACTION = 492; + const YY_NO_ACTION = 490; + const YY_ACCEPT_ACTION = 489; + const YY_ERROR_ACTION = 488; /* Next are that tables used to determine what action to take based on the ** current state and lookahead token. These tables are used to implement @@ -280,292 +280,292 @@ class Smarty_Internal_Templateparser#line 109 "smarty_internal_templateparser.ph */ const YY_SZ_ACTTAB = 1179; static public $yy_action = array( - /* 0 */ 64, 493, 95, 208, 149, 195, 68, 58, 77, 77, - /* 10 */ 242, 243, 90, 170, 162, 42, 19, 166, 171, 214, - /* 20 */ 100, 13, 240, 224, 182, 199, 195, 273, 273, 121, - /* 30 */ 77, 110, 252, 277, 288, 12, 198, 14, 256, 253, - /* 40 */ 160, 102, 176, 240, 41, 1, 72, 235, 236, 273, - /* 50 */ 259, 47, 59, 232, 77, 141, 222, 55, 164, 152, - /* 60 */ 237, 64, 51, 250, 35, 179, 32, 68, 300, 77, - /* 70 */ 148, 242, 243, 273, 287, 293, 294, 9, 8, 280, - /* 80 */ 286, 6, 7, 278, 279, 10, 5, 195, 273, 52, - /* 90 */ 81, 77, 301, 235, 236, 18, 29, 151, 14, 256, - /* 100 */ 253, 167, 100, 176, 240, 41, 237, 72, 247, 36, - /* 110 */ 273, 43, 47, 59, 106, 64, 289, 160, 219, 45, - /* 120 */ 35, 68, 248, 51, 250, 242, 243, 44, 287, 293, - /* 130 */ 294, 9, 8, 280, 286, 6, 7, 278, 279, 10, - /* 140 */ 5, 217, 295, 19, 160, 202, 66, 235, 236, 77, - /* 150 */ 29, 47, 14, 233, 54, 27, 121, 176, 196, 41, - /* 160 */ 237, 66, 247, 168, 186, 355, 47, 59, 273, 64, - /* 170 */ 249, 204, 289, 155, 33, 68, 248, 51, 250, 242, - /* 180 */ 243, 190, 195, 189, 307, 63, 77, 53, 80, 74, - /* 190 */ 13, 66, 36, 247, 312, 234, 47, 256, 253, 240, - /* 200 */ 100, 275, 240, 185, 12, 273, 14, 248, 273, 123, - /* 210 */ 44, 176, 197, 41, 66, 65, 132, 355, 353, 47, - /* 220 */ 47, 59, 300, 64, 203, 131, 105, 154, 272, 68, - /* 230 */ 239, 51, 250, 242, 243, 260, 287, 293, 294, 9, - /* 240 */ 8, 280, 286, 6, 7, 278, 279, 10, 5, 195, - /* 250 */ 173, 129, 223, 77, 258, 313, 299, 35, 29, 195, - /* 260 */ 14, 159, 253, 77, 100, 176, 240, 41, 35, 72, - /* 270 */ 188, 257, 273, 20, 47, 59, 240, 64, 225, 66, - /* 280 */ 17, 164, 273, 68, 47, 51, 250, 242, 243, 302, - /* 290 */ 287, 293, 294, 9, 8, 280, 286, 6, 7, 278, - /* 300 */ 279, 10, 5, 27, 213, 212, 193, 192, 216, 184, - /* 310 */ 211, 230, 29, 70, 14, 228, 229, 145, 2, 176, - /* 320 */ 289, 41, 298, 72, 15, 160, 195, 4, 47, 59, - /* 330 */ 77, 64, 35, 26, 133, 156, 172, 68, 254, 51, - /* 340 */ 250, 242, 243, 240, 281, 178, 39, 160, 116, 273, - /* 350 */ 283, 284, 311, 308, 297, 296, 309, 310, 285, 160, - /* 360 */ 160, 16, 160, 244, 158, 188, 11, 28, 14, 291, - /* 370 */ 303, 46, 211, 176, 175, 41, 255, 72, 73, 43, - /* 380 */ 77, 17, 47, 59, 289, 64, 15, 42, 143, 164, - /* 390 */ 50, 68, 160, 51, 250, 242, 243, 120, 62, 273, - /* 400 */ 39, 300, 247, 71, 283, 284, 311, 308, 297, 296, - /* 410 */ 309, 310, 285, 244, 260, 60, 248, 31, 244, 220, - /* 420 */ 29, 140, 14, 245, 160, 150, 158, 176, 281, 41, - /* 430 */ 244, 66, 209, 46, 300, 79, 47, 59, 124, 64, - /* 440 */ 139, 96, 153, 163, 152, 68, 160, 51, 250, 242, - /* 450 */ 243, 300, 160, 300, 39, 292, 221, 188, 283, 284, - /* 460 */ 311, 308, 297, 296, 309, 310, 285, 19, 18, 288, - /* 470 */ 160, 23, 24, 103, 29, 195, 14, 38, 160, 77, - /* 480 */ 121, 176, 160, 41, 43, 66, 152, 282, 152, 188, - /* 490 */ 47, 59, 240, 64, 130, 188, 3, 165, 273, 68, - /* 500 */ 160, 51, 250, 242, 243, 19, 35, 300, 276, 199, - /* 510 */ 30, 64, 99, 261, 48, 127, 265, 68, 121, 195, - /* 520 */ 239, 242, 243, 77, 160, 61, 112, 22, 11, 1, - /* 530 */ 14, 256, 253, 147, 97, 176, 240, 41, 239, 72, - /* 540 */ 244, 244, 273, 181, 47, 59, 29, 276, 14, 49, - /* 550 */ 186, 45, 357, 176, 64, 51, 250, 66, 289, 117, - /* 560 */ 68, 101, 47, 59, 242, 243, 128, 146, 137, 163, - /* 570 */ 269, 239, 64, 51, 250, 195, 244, 118, 68, 77, - /* 580 */ 19, 300, 242, 243, 231, 187, 21, 256, 253, 29, - /* 590 */ 100, 264, 240, 121, 180, 206, 176, 34, 273, 263, - /* 600 */ 66, 271, 138, 241, 357, 47, 59, 29, 144, 238, - /* 610 */ 183, 266, 163, 251, 176, 300, 51, 250, 66, 21, - /* 620 */ 226, 300, 67, 47, 59, 316, 258, 227, 305, 200, - /* 630 */ 157, 69, 274, 210, 51, 250, 195, 342, 58, 215, - /* 640 */ 77, 25, 76, 85, 191, 174, 194, 82, 207, 253, - /* 650 */ 218, 100, 272, 240, 195, 288, 58, 40, 77, 273, - /* 660 */ 107, 86, 262, 246, 277, 78, 207, 253, 38, 100, - /* 670 */ 304, 240, 260, 75, 290, 293, 293, 273, 293, 293, - /* 680 */ 195, 293, 277, 293, 77, 293, 293, 195, 293, 58, - /* 690 */ 293, 77, 256, 253, 91, 98, 293, 240, 293, 207, - /* 700 */ 253, 293, 100, 273, 240, 195, 293, 58, 293, 77, - /* 710 */ 273, 293, 93, 293, 293, 277, 293, 207, 253, 293, - /* 720 */ 100, 293, 240, 293, 293, 195, 293, 114, 273, 77, - /* 730 */ 293, 293, 293, 277, 293, 293, 293, 256, 253, 293, - /* 740 */ 100, 293, 240, 293, 293, 293, 293, 293, 273, 293, - /* 750 */ 293, 195, 293, 58, 293, 77, 161, 315, 87, 293, - /* 760 */ 293, 293, 293, 207, 253, 293, 100, 293, 240, 195, - /* 770 */ 293, 58, 293, 77, 273, 293, 92, 293, 293, 277, - /* 780 */ 293, 207, 253, 293, 100, 293, 240, 195, 293, 58, - /* 790 */ 293, 77, 273, 293, 89, 293, 293, 277, 293, 207, - /* 800 */ 253, 293, 100, 293, 240, 293, 293, 195, 293, 56, - /* 810 */ 273, 77, 293, 293, 83, 277, 293, 293, 293, 207, - /* 820 */ 253, 293, 100, 293, 240, 293, 293, 293, 293, 293, - /* 830 */ 273, 293, 293, 293, 293, 277, 293, 195, 293, 58, - /* 840 */ 293, 77, 293, 293, 94, 293, 293, 293, 293, 207, - /* 850 */ 253, 195, 100, 57, 240, 77, 293, 293, 84, 293, - /* 860 */ 273, 293, 293, 207, 253, 277, 100, 293, 240, 195, - /* 870 */ 293, 58, 293, 77, 273, 293, 88, 293, 293, 277, - /* 880 */ 293, 207, 253, 293, 100, 169, 240, 293, 293, 195, - /* 890 */ 293, 111, 273, 74, 293, 293, 195, 277, 118, 293, - /* 900 */ 77, 256, 253, 293, 100, 293, 240, 293, 256, 253, - /* 910 */ 293, 100, 273, 240, 293, 293, 306, 293, 293, 273, - /* 920 */ 293, 195, 293, 118, 293, 77, 293, 293, 293, 293, - /* 930 */ 293, 293, 293, 256, 253, 195, 100, 114, 240, 77, - /* 940 */ 293, 205, 293, 293, 273, 293, 293, 256, 253, 293, - /* 950 */ 100, 195, 240, 118, 293, 77, 293, 293, 273, 293, - /* 960 */ 293, 293, 293, 256, 253, 293, 100, 314, 240, 293, - /* 970 */ 293, 201, 293, 195, 273, 126, 293, 77, 293, 293, - /* 980 */ 195, 293, 125, 293, 77, 256, 253, 293, 100, 293, - /* 990 */ 240, 293, 256, 253, 293, 100, 273, 240, 195, 293, - /* 1000 */ 135, 293, 77, 273, 293, 195, 293, 113, 293, 77, - /* 1010 */ 256, 253, 293, 100, 293, 240, 293, 256, 253, 293, - /* 1020 */ 100, 273, 240, 195, 293, 134, 293, 77, 273, 293, - /* 1030 */ 195, 293, 109, 293, 77, 256, 253, 195, 100, 142, - /* 1040 */ 240, 77, 256, 253, 293, 100, 273, 240, 293, 256, - /* 1050 */ 253, 293, 100, 273, 240, 195, 293, 108, 293, 77, - /* 1060 */ 273, 293, 195, 293, 119, 293, 77, 256, 253, 293, - /* 1070 */ 100, 293, 240, 293, 256, 253, 293, 100, 273, 240, - /* 1080 */ 195, 293, 104, 293, 77, 273, 293, 195, 293, 136, - /* 1090 */ 293, 77, 256, 253, 293, 100, 293, 240, 293, 256, - /* 1100 */ 253, 293, 100, 273, 240, 195, 293, 122, 293, 77, - /* 1110 */ 273, 293, 195, 293, 115, 293, 77, 256, 253, 293, - /* 1120 */ 100, 293, 240, 293, 256, 253, 37, 100, 273, 240, - /* 1130 */ 267, 268, 293, 293, 293, 273, 293, 293, 293, 293, - /* 1140 */ 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, - /* 1150 */ 293, 293, 293, 293, 293, 293, 293, 293, 293, 293, - /* 1160 */ 293, 293, 177, 293, 293, 293, 66, 293, 293, 293, - /* 1170 */ 293, 47, 293, 293, 293, 293, 293, 293, 270, + /* 0 */ 62, 287, 164, 73, 20, 182, 68, 58, 48, 76, + /* 10 */ 210, 296, 88, 178, 157, 198, 95, 158, 183, 125, + /* 20 */ 101, 13, 295, 150, 257, 110, 182, 36, 58, 234, + /* 30 */ 76, 246, 250, 85, 276, 12, 146, 14, 187, 308, + /* 40 */ 76, 101, 188, 295, 42, 44, 74, 36, 164, 43, + /* 50 */ 234, 48, 59, 291, 141, 276, 247, 235, 163, 290, + /* 60 */ 234, 62, 51, 307, 179, 44, 30, 68, 76, 217, + /* 70 */ 147, 210, 296, 76, 264, 262, 261, 4, 5, 251, + /* 80 */ 252, 3, 8, 254, 253, 7, 6, 182, 234, 58, + /* 90 */ 258, 76, 30, 234, 92, 43, 32, 19, 14, 187, + /* 100 */ 308, 177, 101, 188, 295, 42, 54, 74, 121, 16, + /* 110 */ 199, 234, 48, 59, 28, 62, 276, 164, 306, 45, + /* 120 */ 26, 68, 114, 51, 307, 210, 296, 34, 264, 262, + /* 130 */ 261, 4, 5, 251, 252, 3, 8, 254, 253, 7, + /* 140 */ 6, 143, 260, 55, 306, 151, 265, 202, 353, 212, + /* 150 */ 32, 76, 14, 216, 250, 249, 284, 188, 37, 42, + /* 160 */ 73, 73, 238, 214, 22, 48, 48, 59, 283, 62, + /* 170 */ 302, 234, 117, 153, 203, 68, 16, 51, 307, 210, + /* 180 */ 296, 200, 17, 185, 63, 305, 52, 81, 66, 114, + /* 190 */ 13, 102, 249, 284, 204, 29, 243, 308, 73, 101, + /* 200 */ 353, 295, 292, 48, 12, 283, 14, 201, 234, 164, + /* 210 */ 239, 188, 292, 42, 248, 65, 15, 16, 30, 176, + /* 220 */ 48, 59, 120, 62, 30, 41, 15, 152, 351, 68, + /* 230 */ 114, 51, 307, 210, 296, 250, 264, 262, 261, 4, + /* 240 */ 5, 251, 252, 3, 8, 254, 253, 7, 6, 233, + /* 250 */ 195, 249, 284, 35, 10, 300, 161, 150, 32, 34, + /* 260 */ 14, 136, 303, 46, 283, 188, 161, 42, 199, 74, + /* 270 */ 306, 275, 313, 46, 48, 59, 306, 62, 206, 263, + /* 280 */ 351, 163, 27, 68, 240, 51, 307, 210, 296, 164, + /* 290 */ 264, 262, 261, 4, 5, 251, 252, 3, 8, 254, + /* 300 */ 253, 7, 6, 25, 226, 229, 196, 186, 228, 132, + /* 310 */ 164, 219, 9, 148, 14, 224, 225, 128, 2, 188, + /* 320 */ 294, 42, 250, 74, 489, 94, 227, 144, 48, 59, + /* 330 */ 123, 62, 290, 73, 150, 163, 170, 68, 48, 51, + /* 340 */ 307, 210, 296, 250, 298, 175, 39, 221, 67, 180, + /* 350 */ 267, 268, 274, 289, 270, 269, 271, 272, 273, 16, + /* 360 */ 50, 205, 207, 349, 164, 31, 32, 164, 14, 1, + /* 370 */ 311, 30, 114, 188, 275, 42, 164, 74, 309, 172, + /* 380 */ 189, 165, 48, 59, 299, 62, 149, 24, 104, 154, + /* 390 */ 145, 68, 164, 51, 307, 210, 296, 211, 75, 245, + /* 400 */ 39, 76, 255, 250, 267, 268, 274, 289, 270, 269, + /* 410 */ 271, 272, 273, 150, 288, 165, 18, 233, 33, 173, + /* 420 */ 32, 234, 14, 306, 311, 164, 168, 188, 169, 42, + /* 430 */ 30, 73, 301, 164, 165, 100, 48, 59, 299, 62, + /* 440 */ 64, 116, 209, 160, 164, 68, 164, 51, 307, 210, + /* 450 */ 296, 288, 232, 112, 39, 60, 288, 288, 267, 268, + /* 460 */ 274, 289, 270, 269, 271, 272, 273, 38, 164, 288, + /* 470 */ 43, 288, 73, 165, 32, 133, 14, 48, 99, 165, + /* 480 */ 61, 188, 171, 42, 241, 73, 131, 237, 250, 108, + /* 490 */ 48, 59, 305, 62, 16, 304, 288, 156, 180, 68, + /* 500 */ 164, 51, 307, 210, 296, 223, 281, 114, 218, 72, + /* 510 */ 138, 62, 182, 164, 58, 290, 76, 68, 1, 93, + /* 520 */ 127, 210, 296, 285, 187, 308, 130, 101, 9, 295, + /* 530 */ 14, 290, 184, 250, 190, 188, 234, 42, 213, 74, + /* 540 */ 18, 276, 80, 259, 48, 59, 32, 245, 14, 174, + /* 550 */ 338, 45, 69, 188, 62, 51, 307, 73, 140, 236, + /* 560 */ 68, 181, 48, 59, 210, 296, 71, 17, 166, 160, + /* 570 */ 230, 250, 62, 51, 307, 142, 231, 293, 68, 286, + /* 580 */ 182, 297, 210, 296, 76, 194, 215, 19, 250, 32, + /* 590 */ 222, 41, 243, 308, 23, 97, 188, 295, 182, 77, + /* 600 */ 73, 310, 76, 235, 234, 48, 59, 32, 78, 305, + /* 610 */ 243, 308, 155, 96, 188, 295, 51, 307, 73, 40, + /* 620 */ 11, 21, 234, 48, 59, 49, 220, 282, 119, 182, + /* 630 */ 160, 58, 312, 76, 51, 307, 89, 167, 47, 38, + /* 640 */ 233, 187, 308, 70, 101, 292, 295, 292, 292, 292, + /* 650 */ 182, 292, 105, 234, 76, 292, 292, 292, 276, 292, + /* 660 */ 292, 292, 243, 308, 182, 101, 58, 295, 76, 292, + /* 670 */ 292, 90, 292, 292, 234, 292, 187, 308, 292, 101, + /* 680 */ 292, 295, 162, 277, 292, 292, 182, 182, 234, 56, + /* 690 */ 76, 76, 292, 276, 83, 292, 292, 292, 280, 187, + /* 700 */ 308, 292, 101, 295, 295, 182, 292, 58, 292, 76, + /* 710 */ 234, 234, 84, 292, 292, 292, 276, 187, 308, 292, + /* 720 */ 101, 292, 295, 182, 292, 58, 292, 76, 292, 234, + /* 730 */ 86, 292, 292, 292, 276, 187, 308, 292, 101, 292, + /* 740 */ 295, 292, 292, 292, 182, 292, 58, 234, 76, 292, + /* 750 */ 292, 91, 276, 292, 292, 292, 187, 308, 292, 101, + /* 760 */ 292, 295, 182, 292, 57, 292, 76, 292, 234, 82, + /* 770 */ 292, 292, 292, 276, 187, 308, 292, 101, 292, 295, + /* 780 */ 182, 292, 58, 292, 76, 292, 234, 87, 292, 292, + /* 790 */ 292, 276, 187, 308, 292, 101, 292, 295, 182, 292, + /* 800 */ 105, 292, 76, 292, 234, 292, 292, 292, 292, 276, + /* 810 */ 243, 308, 292, 101, 191, 295, 292, 182, 292, 111, + /* 820 */ 292, 66, 234, 292, 292, 292, 292, 292, 292, 243, + /* 830 */ 308, 266, 101, 182, 295, 124, 242, 76, 292, 292, + /* 840 */ 292, 234, 292, 292, 292, 159, 308, 182, 101, 103, + /* 850 */ 295, 76, 292, 292, 292, 292, 292, 234, 292, 243, + /* 860 */ 308, 182, 101, 103, 295, 76, 292, 292, 197, 292, + /* 870 */ 292, 234, 292, 243, 308, 292, 101, 292, 295, 182, + /* 880 */ 292, 103, 193, 76, 292, 234, 292, 292, 292, 292, + /* 890 */ 292, 243, 308, 292, 101, 182, 295, 103, 292, 76, + /* 900 */ 256, 292, 292, 234, 292, 292, 292, 243, 308, 292, + /* 910 */ 101, 182, 295, 53, 79, 76, 192, 292, 292, 234, + /* 920 */ 292, 292, 292, 243, 308, 292, 101, 182, 295, 109, + /* 930 */ 292, 76, 292, 292, 292, 234, 292, 292, 292, 243, + /* 940 */ 308, 182, 101, 107, 295, 76, 292, 292, 292, 292, + /* 950 */ 292, 234, 292, 243, 308, 182, 101, 106, 295, 76, + /* 960 */ 292, 292, 292, 292, 292, 234, 292, 243, 308, 292, + /* 970 */ 101, 292, 295, 182, 292, 139, 292, 76, 292, 234, + /* 980 */ 292, 292, 292, 292, 292, 243, 308, 292, 101, 182, + /* 990 */ 295, 122, 292, 76, 292, 292, 292, 234, 292, 292, + /* 1000 */ 292, 243, 308, 292, 101, 182, 295, 137, 292, 76, + /* 1010 */ 292, 292, 292, 234, 292, 292, 292, 243, 308, 292, + /* 1020 */ 101, 182, 295, 118, 292, 76, 292, 292, 292, 234, + /* 1030 */ 292, 292, 292, 243, 308, 182, 101, 115, 295, 76, + /* 1040 */ 292, 292, 292, 292, 292, 234, 292, 243, 308, 182, + /* 1050 */ 101, 129, 295, 76, 292, 292, 292, 292, 292, 234, + /* 1060 */ 292, 243, 308, 292, 101, 292, 295, 182, 292, 113, + /* 1070 */ 292, 76, 292, 234, 292, 292, 292, 292, 292, 243, + /* 1080 */ 308, 292, 101, 182, 295, 126, 292, 76, 292, 292, + /* 1090 */ 292, 234, 292, 292, 292, 243, 308, 292, 101, 182, + /* 1100 */ 295, 135, 292, 76, 292, 292, 292, 234, 292, 292, + /* 1110 */ 292, 243, 308, 292, 101, 182, 295, 134, 292, 76, + /* 1120 */ 292, 292, 292, 234, 292, 292, 292, 243, 308, 182, + /* 1130 */ 101, 292, 295, 76, 292, 292, 292, 292, 292, 234, + /* 1140 */ 292, 243, 308, 182, 98, 182, 295, 76, 292, 76, + /* 1150 */ 292, 292, 292, 234, 182, 279, 278, 208, 76, 292, + /* 1160 */ 295, 292, 295, 292, 292, 292, 244, 234, 292, 234, + /* 1170 */ 292, 295, 292, 292, 292, 292, 292, 292, 234, ); static public $yy_lookahead = array( - /* 0 */ 9, 74, 75, 76, 81, 81, 15, 83, 85, 85, - /* 10 */ 19, 20, 88, 89, 90, 69, 44, 93, 94, 47, - /* 20 */ 96, 30, 98, 100, 59, 48, 81, 104, 104, 57, - /* 30 */ 85, 103, 67, 109, 106, 44, 64, 46, 93, 94, - /* 40 */ 63, 96, 51, 98, 53, 68, 55, 53, 54, 104, - /* 50 */ 81, 60, 61, 1, 85, 82, 16, 87, 67, 86, - /* 60 */ 66, 9, 71, 72, 15, 81, 15, 15, 95, 85, - /* 70 */ 16, 19, 20, 104, 31, 32, 33, 34, 35, 36, - /* 80 */ 37, 38, 39, 40, 41, 42, 43, 81, 104, 83, - /* 90 */ 84, 85, 1, 53, 54, 44, 44, 16, 46, 93, - /* 100 */ 94, 58, 96, 51, 98, 53, 66, 55, 1, 46, - /* 110 */ 104, 48, 60, 61, 103, 9, 67, 63, 11, 67, - /* 120 */ 15, 15, 15, 71, 72, 19, 20, 64, 31, 32, + /* 0 */ 9, 16, 63, 55, 65, 80, 15, 82, 60, 84, + /* 10 */ 19, 20, 87, 88, 89, 67, 99, 92, 93, 81, + /* 20 */ 95, 30, 97, 85, 1, 103, 80, 46, 82, 104, + /* 30 */ 84, 114, 94, 87, 109, 44, 80, 46, 92, 93, + /* 40 */ 84, 95, 51, 97, 53, 64, 55, 46, 63, 48, + /* 50 */ 104, 60, 61, 1, 102, 109, 100, 105, 67, 107, + /* 60 */ 104, 9, 71, 72, 80, 64, 15, 15, 84, 80, + /* 70 */ 16, 19, 20, 84, 31, 32, 33, 34, 35, 36, + /* 80 */ 37, 38, 39, 40, 41, 42, 43, 80, 104, 82, + /* 90 */ 67, 84, 15, 104, 87, 48, 44, 50, 46, 92, + /* 100 */ 93, 58, 95, 51, 97, 53, 86, 55, 86, 44, + /* 110 */ 59, 104, 60, 61, 49, 9, 109, 63, 67, 67, + /* 120 */ 15, 15, 57, 71, 72, 19, 20, 50, 31, 32, /* 130 */ 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, - /* 140 */ 43, 47, 45, 44, 63, 81, 55, 53, 54, 85, - /* 150 */ 44, 60, 46, 47, 87, 50, 57, 51, 67, 53, - /* 160 */ 66, 55, 1, 77, 59, 16, 60, 61, 104, 9, - /* 170 */ 9, 85, 67, 67, 15, 15, 15, 71, 72, 19, - /* 180 */ 20, 77, 81, 79, 45, 81, 85, 83, 84, 85, - /* 190 */ 30, 55, 46, 1, 93, 94, 60, 93, 94, 98, - /* 200 */ 96, 9, 98, 67, 44, 104, 46, 15, 104, 82, - /* 210 */ 64, 51, 55, 53, 55, 55, 87, 68, 16, 60, - /* 220 */ 60, 61, 95, 9, 67, 102, 67, 67, 105, 15, - /* 230 */ 107, 71, 72, 19, 20, 108, 31, 32, 33, 34, - /* 240 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 81, - /* 250 */ 45, 83, 84, 85, 52, 47, 1, 15, 44, 81, - /* 260 */ 46, 93, 94, 85, 96, 51, 98, 53, 15, 55, - /* 270 */ 68, 93, 104, 65, 60, 61, 98, 9, 16, 55, - /* 280 */ 50, 67, 104, 15, 60, 71, 72, 19, 20, 62, + /* 140 */ 43, 81, 45, 86, 67, 85, 47, 80, 16, 47, + /* 150 */ 44, 84, 46, 47, 94, 53, 54, 51, 15, 53, + /* 160 */ 55, 55, 19, 20, 65, 60, 60, 61, 66, 9, + /* 170 */ 91, 104, 67, 67, 18, 15, 44, 71, 72, 19, + /* 180 */ 20, 77, 50, 79, 80, 106, 82, 83, 84, 57, + /* 190 */ 30, 103, 53, 54, 51, 49, 92, 93, 55, 95, + /* 200 */ 68, 97, 1, 60, 44, 66, 46, 55, 104, 63, + /* 210 */ 67, 51, 1, 53, 16, 55, 15, 44, 15, 67, + /* 220 */ 60, 61, 81, 9, 15, 69, 15, 67, 16, 15, + /* 230 */ 57, 71, 72, 19, 20, 94, 31, 32, 33, 34, + /* 240 */ 35, 36, 37, 38, 39, 40, 41, 42, 43, 108, + /* 250 */ 45, 53, 54, 50, 58, 52, 55, 85, 44, 50, + /* 260 */ 46, 65, 61, 62, 66, 51, 55, 53, 59, 55, + /* 270 */ 67, 45, 61, 62, 60, 61, 67, 9, 45, 1, + /* 280 */ 68, 67, 110, 15, 67, 71, 72, 19, 20, 63, /* 290 */ 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, - /* 300 */ 41, 42, 43, 50, 1, 2, 3, 4, 5, 67, - /* 310 */ 1, 8, 44, 10, 46, 12, 13, 14, 15, 51, - /* 320 */ 67, 53, 67, 55, 15, 63, 81, 58, 60, 61, - /* 330 */ 85, 9, 15, 49, 65, 67, 18, 15, 93, 71, - /* 340 */ 72, 19, 20, 98, 45, 48, 17, 63, 91, 104, - /* 350 */ 21, 22, 23, 24, 25, 26, 27, 28, 29, 63, - /* 360 */ 63, 65, 63, 106, 55, 68, 44, 50, 46, 52, - /* 370 */ 61, 62, 1, 51, 45, 53, 81, 55, 55, 48, - /* 380 */ 85, 50, 60, 61, 67, 9, 15, 69, 82, 67, - /* 390 */ 67, 15, 63, 71, 72, 19, 20, 103, 91, 104, - /* 400 */ 17, 95, 1, 91, 21, 22, 23, 24, 25, 26, - /* 410 */ 27, 28, 29, 106, 108, 91, 15, 56, 106, 45, - /* 420 */ 44, 82, 46, 16, 63, 86, 55, 51, 45, 53, - /* 430 */ 106, 55, 61, 62, 95, 45, 60, 61, 82, 9, - /* 440 */ 82, 99, 86, 67, 86, 15, 63, 71, 72, 19, - /* 450 */ 20, 95, 63, 95, 17, 92, 114, 68, 21, 22, - /* 460 */ 23, 24, 25, 26, 27, 28, 29, 44, 44, 106, - /* 470 */ 63, 56, 49, 80, 44, 81, 46, 56, 63, 85, - /* 480 */ 57, 51, 63, 53, 48, 55, 86, 93, 86, 68, - /* 490 */ 60, 61, 98, 9, 82, 68, 111, 67, 104, 15, - /* 500 */ 63, 71, 72, 19, 20, 44, 15, 95, 115, 48, - /* 510 */ 110, 9, 80, 95, 103, 102, 107, 15, 57, 81, - /* 520 */ 107, 19, 20, 85, 63, 91, 91, 44, 44, 68, - /* 530 */ 46, 93, 94, 102, 96, 51, 98, 53, 107, 55, - /* 540 */ 106, 106, 104, 78, 60, 61, 44, 115, 46, 67, - /* 550 */ 59, 67, 16, 51, 9, 71, 72, 55, 67, 103, - /* 560 */ 15, 91, 60, 61, 19, 20, 102, 67, 82, 67, - /* 570 */ 67, 107, 9, 71, 72, 81, 106, 83, 15, 85, - /* 580 */ 44, 95, 19, 20, 67, 67, 50, 93, 94, 44, - /* 590 */ 96, 16, 98, 57, 64, 101, 51, 70, 104, 16, - /* 600 */ 55, 60, 82, 51, 68, 60, 61, 44, 82, 67, - /* 610 */ 56, 67, 67, 67, 51, 95, 71, 72, 55, 50, - /* 620 */ 16, 95, 55, 60, 61, 16, 52, 16, 62, 67, - /* 630 */ 67, 55, 60, 5, 71, 72, 81, 16, 83, 5, - /* 640 */ 85, 70, 55, 88, 1, 18, 1, 67, 93, 94, - /* 650 */ 47, 96, 105, 98, 81, 106, 83, 97, 85, 104, - /* 660 */ 103, 88, 76, 115, 109, 100, 93, 94, 56, 96, - /* 670 */ 114, 98, 108, 55, 89, 116, 116, 104, 116, 116, - /* 680 */ 81, 116, 109, 116, 85, 116, 116, 81, 116, 83, - /* 690 */ 116, 85, 93, 94, 88, 96, 116, 98, 116, 93, - /* 700 */ 94, 116, 96, 104, 98, 81, 116, 83, 116, 85, - /* 710 */ 104, 116, 88, 116, 116, 109, 116, 93, 94, 116, - /* 720 */ 96, 116, 98, 116, 116, 81, 116, 83, 104, 85, - /* 730 */ 116, 116, 116, 109, 116, 116, 116, 93, 94, 116, - /* 740 */ 96, 116, 98, 116, 116, 116, 116, 116, 104, 116, - /* 750 */ 116, 81, 116, 83, 116, 85, 112, 113, 88, 116, - /* 760 */ 116, 116, 116, 93, 94, 116, 96, 116, 98, 81, - /* 770 */ 116, 83, 116, 85, 104, 116, 88, 116, 116, 109, - /* 780 */ 116, 93, 94, 116, 96, 116, 98, 81, 116, 83, - /* 790 */ 116, 85, 104, 116, 88, 116, 116, 109, 116, 93, - /* 800 */ 94, 116, 96, 116, 98, 116, 116, 81, 116, 83, - /* 810 */ 104, 85, 116, 116, 88, 109, 116, 116, 116, 93, - /* 820 */ 94, 116, 96, 116, 98, 116, 116, 116, 116, 116, - /* 830 */ 104, 116, 116, 116, 116, 109, 116, 81, 116, 83, - /* 840 */ 116, 85, 116, 116, 88, 116, 116, 116, 116, 93, - /* 850 */ 94, 81, 96, 83, 98, 85, 116, 116, 88, 116, - /* 860 */ 104, 116, 116, 93, 94, 109, 96, 116, 98, 81, - /* 870 */ 116, 83, 116, 85, 104, 116, 88, 116, 116, 109, - /* 880 */ 116, 93, 94, 116, 96, 77, 98, 116, 116, 81, - /* 890 */ 116, 83, 104, 85, 116, 116, 81, 109, 83, 116, - /* 900 */ 85, 93, 94, 116, 96, 116, 98, 116, 93, 94, - /* 910 */ 116, 96, 104, 98, 116, 116, 101, 116, 116, 104, - /* 920 */ 116, 81, 116, 83, 116, 85, 116, 116, 116, 116, - /* 930 */ 116, 116, 116, 93, 94, 81, 96, 83, 98, 85, - /* 940 */ 116, 101, 116, 116, 104, 116, 116, 93, 94, 116, - /* 950 */ 96, 81, 98, 83, 116, 85, 116, 116, 104, 116, - /* 960 */ 116, 116, 116, 93, 94, 116, 96, 113, 98, 116, - /* 970 */ 116, 101, 116, 81, 104, 83, 116, 85, 116, 116, - /* 980 */ 81, 116, 83, 116, 85, 93, 94, 116, 96, 116, - /* 990 */ 98, 116, 93, 94, 116, 96, 104, 98, 81, 116, - /* 1000 */ 83, 116, 85, 104, 116, 81, 116, 83, 116, 85, - /* 1010 */ 93, 94, 116, 96, 116, 98, 116, 93, 94, 116, - /* 1020 */ 96, 104, 98, 81, 116, 83, 116, 85, 104, 116, - /* 1030 */ 81, 116, 83, 116, 85, 93, 94, 81, 96, 83, - /* 1040 */ 98, 85, 93, 94, 116, 96, 104, 98, 116, 93, - /* 1050 */ 94, 116, 96, 104, 98, 81, 116, 83, 116, 85, - /* 1060 */ 104, 116, 81, 116, 83, 116, 85, 93, 94, 116, - /* 1070 */ 96, 116, 98, 116, 93, 94, 116, 96, 104, 98, - /* 1080 */ 81, 116, 83, 116, 85, 104, 116, 81, 116, 83, - /* 1090 */ 116, 85, 93, 94, 116, 96, 116, 98, 116, 93, - /* 1100 */ 94, 116, 96, 104, 98, 81, 116, 83, 116, 85, - /* 1110 */ 104, 116, 81, 116, 83, 116, 85, 93, 94, 116, - /* 1120 */ 96, 116, 98, 116, 93, 94, 15, 96, 104, 98, - /* 1130 */ 19, 20, 116, 116, 116, 104, 116, 116, 116, 116, - /* 1140 */ 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, - /* 1150 */ 116, 116, 116, 116, 116, 116, 116, 116, 116, 116, - /* 1160 */ 116, 116, 51, 116, 116, 116, 55, 116, 116, 116, - /* 1170 */ 116, 60, 116, 116, 116, 116, 116, 116, 67, + /* 300 */ 41, 42, 43, 56, 1, 2, 3, 4, 5, 81, + /* 310 */ 63, 8, 44, 85, 46, 12, 13, 14, 15, 51, + /* 320 */ 16, 53, 94, 55, 74, 75, 76, 102, 60, 61, + /* 330 */ 81, 9, 107, 55, 85, 67, 59, 15, 60, 71, + /* 340 */ 72, 19, 20, 94, 67, 67, 17, 16, 55, 48, + /* 350 */ 21, 22, 23, 24, 25, 26, 27, 28, 29, 44, + /* 360 */ 67, 48, 47, 16, 63, 70, 44, 63, 46, 68, + /* 370 */ 1, 15, 57, 51, 45, 53, 63, 55, 9, 64, + /* 380 */ 1, 68, 60, 61, 15, 9, 16, 15, 103, 67, + /* 390 */ 81, 15, 63, 71, 72, 19, 20, 80, 90, 52, + /* 400 */ 17, 84, 45, 94, 21, 22, 23, 24, 25, 26, + /* 410 */ 27, 28, 29, 85, 106, 68, 44, 108, 56, 77, + /* 420 */ 44, 104, 46, 67, 1, 63, 84, 51, 45, 53, + /* 430 */ 15, 55, 9, 63, 68, 90, 60, 61, 15, 9, + /* 440 */ 90, 90, 51, 67, 63, 15, 63, 71, 72, 19, + /* 450 */ 20, 106, 94, 90, 17, 90, 106, 106, 21, 22, + /* 460 */ 23, 24, 25, 26, 27, 28, 29, 56, 63, 106, + /* 470 */ 48, 106, 55, 68, 44, 81, 46, 60, 98, 68, + /* 480 */ 90, 51, 67, 53, 107, 55, 67, 60, 94, 103, + /* 490 */ 60, 61, 106, 9, 44, 115, 106, 67, 48, 15, + /* 500 */ 63, 71, 72, 19, 20, 16, 62, 57, 67, 55, + /* 510 */ 102, 9, 80, 63, 82, 107, 84, 15, 68, 87, + /* 520 */ 81, 19, 20, 16, 92, 93, 102, 95, 44, 97, + /* 530 */ 46, 107, 67, 94, 1, 51, 104, 53, 47, 55, + /* 540 */ 44, 109, 67, 62, 60, 61, 44, 52, 46, 18, + /* 550 */ 16, 67, 55, 51, 9, 71, 72, 55, 81, 60, + /* 560 */ 15, 56, 60, 61, 19, 20, 55, 50, 67, 67, + /* 570 */ 5, 94, 9, 71, 72, 81, 5, 16, 15, 67, + /* 580 */ 80, 67, 19, 20, 84, 64, 67, 50, 94, 44, + /* 590 */ 16, 69, 92, 93, 70, 95, 51, 97, 80, 45, + /* 600 */ 55, 115, 84, 105, 104, 60, 61, 44, 100, 106, + /* 610 */ 92, 93, 67, 95, 51, 97, 71, 72, 55, 96, + /* 620 */ 111, 44, 104, 60, 61, 67, 76, 114, 103, 80, + /* 630 */ 67, 82, 88, 84, 71, 72, 87, 78, 103, 56, + /* 640 */ 108, 92, 93, 55, 95, 116, 97, 116, 116, 116, + /* 650 */ 80, 116, 82, 104, 84, 116, 116, 116, 109, 116, + /* 660 */ 116, 116, 92, 93, 80, 95, 82, 97, 84, 116, + /* 670 */ 116, 87, 116, 116, 104, 116, 92, 93, 116, 95, + /* 680 */ 116, 97, 112, 113, 116, 116, 80, 80, 104, 82, + /* 690 */ 84, 84, 116, 109, 87, 116, 116, 116, 92, 92, + /* 700 */ 93, 116, 95, 97, 97, 80, 116, 82, 116, 84, + /* 710 */ 104, 104, 87, 116, 116, 116, 109, 92, 93, 116, + /* 720 */ 95, 116, 97, 80, 116, 82, 116, 84, 116, 104, + /* 730 */ 87, 116, 116, 116, 109, 92, 93, 116, 95, 116, + /* 740 */ 97, 116, 116, 116, 80, 116, 82, 104, 84, 116, + /* 750 */ 116, 87, 109, 116, 116, 116, 92, 93, 116, 95, + /* 760 */ 116, 97, 80, 116, 82, 116, 84, 116, 104, 87, + /* 770 */ 116, 116, 116, 109, 92, 93, 116, 95, 116, 97, + /* 780 */ 80, 116, 82, 116, 84, 116, 104, 87, 116, 116, + /* 790 */ 116, 109, 92, 93, 116, 95, 116, 97, 80, 116, + /* 800 */ 82, 116, 84, 116, 104, 116, 116, 116, 116, 109, + /* 810 */ 92, 93, 116, 95, 77, 97, 116, 80, 116, 82, + /* 820 */ 116, 84, 104, 116, 116, 116, 116, 116, 116, 92, + /* 830 */ 93, 113, 95, 80, 97, 82, 83, 84, 116, 116, + /* 840 */ 116, 104, 116, 116, 116, 92, 93, 80, 95, 82, + /* 850 */ 97, 84, 116, 116, 116, 116, 116, 104, 116, 92, + /* 860 */ 93, 80, 95, 82, 97, 84, 116, 116, 101, 116, + /* 870 */ 116, 104, 116, 92, 93, 116, 95, 116, 97, 80, + /* 880 */ 116, 82, 101, 84, 116, 104, 116, 116, 116, 116, + /* 890 */ 116, 92, 93, 116, 95, 80, 97, 82, 116, 84, + /* 900 */ 101, 116, 116, 104, 116, 116, 116, 92, 93, 116, + /* 910 */ 95, 80, 97, 82, 83, 84, 101, 116, 116, 104, + /* 920 */ 116, 116, 116, 92, 93, 116, 95, 80, 97, 82, + /* 930 */ 116, 84, 116, 116, 116, 104, 116, 116, 116, 92, + /* 940 */ 93, 80, 95, 82, 97, 84, 116, 116, 116, 116, + /* 950 */ 116, 104, 116, 92, 93, 80, 95, 82, 97, 84, + /* 960 */ 116, 116, 116, 116, 116, 104, 116, 92, 93, 116, + /* 970 */ 95, 116, 97, 80, 116, 82, 116, 84, 116, 104, + /* 980 */ 116, 116, 116, 116, 116, 92, 93, 116, 95, 80, + /* 990 */ 97, 82, 116, 84, 116, 116, 116, 104, 116, 116, + /* 1000 */ 116, 92, 93, 116, 95, 80, 97, 82, 116, 84, + /* 1010 */ 116, 116, 116, 104, 116, 116, 116, 92, 93, 116, + /* 1020 */ 95, 80, 97, 82, 116, 84, 116, 116, 116, 104, + /* 1030 */ 116, 116, 116, 92, 93, 80, 95, 82, 97, 84, + /* 1040 */ 116, 116, 116, 116, 116, 104, 116, 92, 93, 80, + /* 1050 */ 95, 82, 97, 84, 116, 116, 116, 116, 116, 104, + /* 1060 */ 116, 92, 93, 116, 95, 116, 97, 80, 116, 82, + /* 1070 */ 116, 84, 116, 104, 116, 116, 116, 116, 116, 92, + /* 1080 */ 93, 116, 95, 80, 97, 82, 116, 84, 116, 116, + /* 1090 */ 116, 104, 116, 116, 116, 92, 93, 116, 95, 80, + /* 1100 */ 97, 82, 116, 84, 116, 116, 116, 104, 116, 116, + /* 1110 */ 116, 92, 93, 116, 95, 80, 97, 82, 116, 84, + /* 1120 */ 116, 116, 116, 104, 116, 116, 116, 92, 93, 80, + /* 1130 */ 95, 116, 97, 84, 116, 116, 116, 116, 116, 104, + /* 1140 */ 116, 92, 93, 80, 95, 80, 97, 84, 116, 84, + /* 1150 */ 116, 116, 116, 104, 80, 92, 93, 92, 84, 116, + /* 1160 */ 97, 116, 97, 116, 116, 116, 92, 104, 116, 104, + /* 1170 */ 116, 97, 116, 116, 116, 116, 116, 116, 104, ); - const YY_SHIFT_USE_DFLT = -55; - const YY_SHIFT_MAX = 207; + const YY_SHIFT_USE_DFLT = -62; + const YY_SHIFT_MAX = 205; static public $yy_shift_ofst = array( /* 0 */ 303, 160, 484, -9, -9, -9, -9, -9, -9, -9, - /* 10 */ -9, -9, -9, -9, 268, 52, 214, 322, 214, 214, - /* 20 */ 268, 322, 214, 214, 214, 214, 214, 214, 214, 214, + /* 10 */ -9, -9, -9, -9, 322, 52, 214, 268, 214, 268, + /* 20 */ 214, 214, 322, 214, 214, 214, 214, 214, 214, 214, /* 30 */ 214, 214, 214, 214, 214, 214, 106, 376, 430, 502, - /* 40 */ 545, 545, 563, 159, 1111, 461, 91, 136, 63, 297, - /* 50 */ -23, 224, 389, 389, 421, 421, 329, 383, 437, 371, - /* 60 */ 105, 317, 491, 202, 192, 242, 49, 49, 323, 49, - /* 70 */ 401, 49, 242, 49, 331, 49, 49, 436, 436, 436, - /* 80 */ 427, 427, 427, 205, 97, 43, 259, 259, 259, 259, - /* 90 */ 259, 259, 259, 259, 259, 303, 309, 94, 40, 161, - /* 100 */ -6, 253, -6, 107, 54, 51, 146, 146, 361, 407, - /* 110 */ 146, 262, 49, 415, 284, 299, 49, 146, 296, 81, - /* 120 */ 146, 157, 419, 427, 427, 419, 419, 436, 436, 419, - /* 130 */ 427, 436, 612, 618, 419, 419, 419, 427, 427, 427, - /* 140 */ 427, 427, 419, 427, 427, 482, 483, 436, -55, -55, - /* 150 */ -55, -55, -55, -55, 536, -28, 423, 99, 255, 149, - /* 160 */ -35, 208, 269, 99, 99, 99, 318, 576, 609, 611, - /* 170 */ 621, 627, 587, 571, 567, 527, 530, 503, 517, 541, - /* 180 */ 552, 604, 546, 542, 554, 572, 544, 569, 518, 575, - /* 190 */ 583, 634, 643, 645, 628, 574, 566, 500, 562, 580, - /* 200 */ 603, 139, 227, 424, 230, 374, 390, -54, + /* 40 */ 563, 545, 563, 105, 143, 450, 278, 1, -52, 313, + /* 50 */ 301, 417, 405, 405, 411, 411, 383, 329, 437, 211, + /* 60 */ 209, 203, 423, 347, 51, 415, 47, 356, 293, 356, + /* 70 */ 356, 356, 356, 356, 415, 356, 422, 422, 422, 366, + /* 80 */ 366, 366, 97, 205, 43, 259, 259, 259, 259, 259, + /* 90 */ 259, 259, 259, 259, 303, 201, 198, 102, 139, 369, + /* 100 */ 77, 139, -19, -61, -19, 146, 370, 247, -19, 54, + /* 110 */ -19, 304, 356, 362, 152, -15, 356, 372, 226, -19, + /* 120 */ 366, 583, 381, 366, 381, 366, 381, 366, 558, 381, + /* 130 */ 422, 577, 366, 366, 381, 381, 588, 381, 422, 381, + /* 140 */ 366, 422, 366, 366, 422, 366, -62, -62, -62, -62, + /* 150 */ -62, -62, 132, 315, 65, 173, 173, 196, 156, 212, + /* 160 */ 173, 23, 99, 173, 277, 501, 517, 574, 537, 524, + /* 170 */ 514, 505, 465, 507, 454, 444, 496, 497, 534, 481, + /* 180 */ 475, 512, 495, 531, 491, 489, 533, 522, 521, 565, + /* 190 */ 571, 561, 554, 233, 391, 295, 379, 357, 499, 217, + /* 200 */ 331, 419, 427, 511, 519, 441, ); - const YY_REDUCE_USE_DFLT = -78; - const YY_REDUCE_MAX = 153; + const YY_REDUCE_USE_DFLT = -84; + const YY_REDUCE_MAX = 151; static public $yy_reduce_ofst = array( - /* 0 */ -73, -76, 104, 606, 555, 624, 573, 756, 670, 688, - /* 10 */ 706, 726, 770, 788, 644, 808, 815, 6, 840, 870, - /* 20 */ 854, 168, 494, 899, 892, 924, 917, 942, 1024, 1031, - /* 30 */ 1006, 956, 999, 981, 974, 949, 438, 599, -55, 101, - /* 40 */ 245, 178, 394, -77, 295, 339, 64, -16, 123, 356, - /* 50 */ 339, -31, -27, 358, 306, 127, 400, 400, 400, 342, - /* 60 */ -72, 363, -72, 412, 432, 324, 307, 257, 86, 434, - /* 70 */ 393, -72, 307, 312, 413, 470, 435, 413, 431, 464, - /* 80 */ 526, 486, 520, 385, 385, 385, 385, 385, 385, 385, - /* 90 */ 385, 385, 385, 385, 385, 586, 556, 560, 560, 548, - /* 100 */ 560, 549, 560, 548, 402, 557, 547, 547, 402, 402, - /* 110 */ 547, 402, 549, 402, 402, 402, 549, 547, 402, 402, - /* 120 */ 547, 565, 402, 418, 418, 402, 402, 409, 409, 402, - /* 130 */ 418, 409, 564, 585, 402, 402, 402, 418, 418, 418, - /* 140 */ 418, 418, 402, 418, 418, 465, 411, 409, 456, 294, - /* 150 */ 67, 11, 129, -30, + /* 0 */ 250, -75, 104, -54, 7, 549, 432, 664, 584, 607, + /* 10 */ 625, 643, 682, 700, 570, 737, 767, 753, 781, 831, + /* 20 */ 799, 815, 718, 861, 847, 893, 875, 909, 1003, 969, + /* 30 */ 955, 987, 941, 1019, 1035, 925, 500, 518, 1049, 1063, + /* 40 */ 1065, 606, 1074, -44, 317, 60, -16, -48, 67, 228, + /* 50 */ 60, -11, -62, 249, 309, 141, 172, 172, 172, -83, + /* 60 */ 386, 79, 380, 394, 386, 365, 225, 308, 342, 390, + /* 70 */ 345, 363, 351, 350, 350, 386, 225, 408, 424, 477, + /* 80 */ 494, 439, 509, 509, 509, 509, 509, 509, 509, 509, + /* 90 */ 509, 509, 509, 509, 550, 513, 523, 523, 523, 486, + /* 100 */ 503, 523, 498, 328, 498, 328, 328, 328, 498, 328, + /* 110 */ 498, 328, 503, 328, 508, 328, 503, 525, 328, 498, + /* 120 */ 358, 532, 328, 358, 328, 358, 328, 358, 559, 328, + /* 130 */ 377, 535, 358, 358, 328, 328, 544, 328, 377, 328, + /* 140 */ 358, 377, 358, 358, 377, 358, 285, -78, 57, 88, + /* 150 */ 22, 20, ); static public $yyExpectedTokens = array( - /* 0 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), + /* 0 */ array(1, 2, 3, 4, 5, 8, 12, 13, 14, 15, ), /* 1 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ), /* 2 */ array(9, 15, 19, 20, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ), /* 3 */ array(9, 15, 19, 20, 30, 44, 46, 51, 53, 55, 60, 61, 67, 71, 72, ), @@ -612,8 +612,8 @@ static public $yy_action = array( /* 44 */ array(15, 19, 20, 51, 55, 60, 67, ), /* 45 */ array(44, 48, 57, 63, 68, ), /* 46 */ array(1, 55, 60, 67, ), - /* 47 */ array(55, 60, 67, ), - /* 48 */ array(46, 48, 64, ), + /* 47 */ array(46, 48, 64, ), + /* 48 */ array(55, 60, 67, ), /* 49 */ array(48, 63, 68, ), /* 50 */ array(48, 63, 68, ), /* 51 */ array(55, 60, ), @@ -627,30 +627,30 @@ static public $yy_action = array( /* 59 */ array(1, 15, 55, 61, 62, ), /* 60 */ array(15, 50, 59, 67, ), /* 61 */ array(15, 50, 52, 67, ), - /* 62 */ array(15, 59, 67, ), + /* 62 */ array(1, 9, 15, ), /* 63 */ array(16, 52, 68, ), - /* 64 */ array(1, 9, 15, ), + /* 64 */ array(15, 59, 67, ), /* 65 */ array(15, 67, ), - /* 66 */ array(15, 67, ), + /* 66 */ array(48, 50, ), /* 67 */ array(15, 67, ), /* 68 */ array(55, 67, ), /* 69 */ array(15, 67, ), - /* 70 */ array(1, 15, ), + /* 70 */ array(15, 67, ), /* 71 */ array(15, 67, ), /* 72 */ array(15, 67, ), /* 73 */ array(15, 67, ), - /* 74 */ array(48, 50, ), + /* 74 */ array(15, 67, ), /* 75 */ array(15, 67, ), - /* 76 */ array(15, 67, ), + /* 76 */ array(48, ), /* 77 */ array(48, ), /* 78 */ array(48, ), - /* 79 */ array(48, ), + /* 79 */ array(68, ), /* 80 */ array(68, ), /* 81 */ array(68, ), - /* 82 */ array(68, ), + /* 82 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), /* 83 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), - /* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, ), - /* 85 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ), + /* 84 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 58, ), + /* 85 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 86 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 87 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 88 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), @@ -659,120 +659,120 @@ static public $yy_action = array( /* 91 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 92 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), /* 93 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 94 */ array(31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, ), - /* 95 */ array(1, 2, 3, 4, 5, 8, 10, 12, 13, 14, 15, ), - /* 96 */ array(1, 15, 55, 61, 62, ), + /* 94 */ array(1, 2, 3, 4, 5, 8, 12, 13, 14, 15, ), + /* 95 */ array(1, 15, 55, 61, 62, ), + /* 96 */ array(16, 53, 54, 66, ), /* 97 */ array(47, 53, 54, 66, ), - /* 98 */ array(16, 53, 54, 66, ), + /* 98 */ array(53, 54, 66, ), /* 99 */ array(1, 9, 15, ), - /* 100 */ array(53, 54, 66, ), - /* 101 */ array(15, 50, 67, ), - /* 102 */ array(53, 54, 66, ), - /* 103 */ array(1, 11, 15, ), - /* 104 */ array(16, 63, ), - /* 105 */ array(15, 44, ), - /* 106 */ array(46, 64, ), - /* 107 */ array(46, 64, ), - /* 108 */ array(56, 63, ), + /* 100 */ array(15, 50, 67, ), + /* 101 */ array(53, 54, 66, ), + /* 102 */ array(46, 64, ), + /* 103 */ array(63, 65, ), + /* 104 */ array(46, 64, ), + /* 105 */ array(49, 63, ), + /* 106 */ array(16, 63, ), + /* 107 */ array(56, 63, ), + /* 108 */ array(46, 64, ), /* 109 */ array(16, 63, ), /* 110 */ array(46, 64, ), /* 111 */ array(16, 63, ), /* 112 */ array(15, 67, ), /* 113 */ array(56, 63, ), - /* 114 */ array(49, 63, ), - /* 115 */ array(45, 63, ), + /* 114 */ array(55, 67, ), + /* 115 */ array(16, 63, ), /* 116 */ array(15, 67, ), - /* 117 */ array(46, 64, ), - /* 118 */ array(63, 65, ), - /* 119 */ array(16, 63, ), - /* 120 */ array(46, 64, ), - /* 121 */ array(55, 67, ), + /* 117 */ array(15, 44, ), + /* 118 */ array(45, 63, ), + /* 119 */ array(46, 64, ), + /* 120 */ array(68, ), + /* 121 */ array(56, ), /* 122 */ array(63, ), /* 123 */ array(68, ), - /* 124 */ array(68, ), - /* 125 */ array(63, ), + /* 124 */ array(63, ), + /* 125 */ array(68, ), /* 126 */ array(63, ), - /* 127 */ array(48, ), - /* 128 */ array(48, ), + /* 127 */ array(68, ), + /* 128 */ array(67, ), /* 129 */ array(63, ), - /* 130 */ array(68, ), - /* 131 */ array(48, ), - /* 132 */ array(56, ), - /* 133 */ array(55, ), + /* 130 */ array(48, ), + /* 131 */ array(44, ), + /* 132 */ array(68, ), + /* 133 */ array(68, ), /* 134 */ array(63, ), /* 135 */ array(63, ), - /* 136 */ array(63, ), - /* 137 */ array(68, ), - /* 138 */ array(68, ), - /* 139 */ array(68, ), + /* 136 */ array(55, ), + /* 137 */ array(63, ), + /* 138 */ array(48, ), + /* 139 */ array(63, ), /* 140 */ array(68, ), - /* 141 */ array(68, ), - /* 142 */ array(63, ), + /* 141 */ array(48, ), + /* 142 */ array(68, ), /* 143 */ array(68, ), - /* 144 */ array(68, ), - /* 145 */ array(67, ), - /* 146 */ array(44, ), - /* 147 */ array(48, ), + /* 144 */ array(48, ), + /* 145 */ array(68, ), + /* 146 */ array(), + /* 147 */ array(), /* 148 */ array(), /* 149 */ array(), /* 150 */ array(), /* 151 */ array(), - /* 152 */ array(), - /* 153 */ array(), - /* 154 */ array(16, 44, 50, 57, 68, ), - /* 155 */ array(44, 47, 57, 64, ), - /* 156 */ array(44, 49, 57, ), - /* 157 */ array(44, 57, ), - /* 158 */ array(1, 67, ), + /* 152 */ array(16, 44, 50, 57, 68, ), + /* 153 */ array(44, 47, 57, 64, ), + /* 154 */ array(44, 49, 57, ), + /* 155 */ array(44, 57, ), + /* 156 */ array(44, 57, ), + /* 157 */ array(58, 65, ), + /* 158 */ array(18, 69, ), /* 159 */ array(16, 68, ), - /* 160 */ array(59, 67, ), - /* 161 */ array(47, 65, ), - /* 162 */ array(58, 65, ), + /* 160 */ array(44, 57, ), + /* 161 */ array(1, 67, ), + /* 162 */ array(47, 65, ), /* 163 */ array(44, 57, ), - /* 164 */ array(44, 57, ), - /* 165 */ array(44, 57, ), - /* 166 */ array(18, 69, ), - /* 167 */ array(55, ), - /* 168 */ array(16, ), - /* 169 */ array(16, ), - /* 170 */ array(16, ), - /* 171 */ array(18, ), - /* 172 */ array(55, ), - /* 173 */ array(70, ), + /* 164 */ array(59, 67, ), + /* 165 */ array(67, ), + /* 166 */ array(50, ), + /* 167 */ array(16, ), + /* 168 */ array(50, ), + /* 169 */ array(70, ), + /* 170 */ array(67, ), + /* 171 */ array(56, ), + /* 172 */ array(67, ), + /* 173 */ array(16, ), /* 174 */ array(55, ), - /* 175 */ array(70, ), - /* 176 */ array(64, ), - /* 177 */ array(67, ), - /* 178 */ array(67, ), - /* 179 */ array(60, ), - /* 180 */ array(51, ), - /* 181 */ array(16, ), - /* 182 */ array(67, ), - /* 183 */ array(67, ), - /* 184 */ array(56, ), - /* 185 */ array(60, ), - /* 186 */ array(67, ), - /* 187 */ array(50, ), - /* 188 */ array(67, ), - /* 189 */ array(16, ), - /* 190 */ array(16, ), - /* 191 */ array(5, ), - /* 192 */ array(1, ), - /* 193 */ array(1, ), - /* 194 */ array(5, ), - /* 195 */ array(52, ), - /* 196 */ array(62, ), - /* 197 */ array(67, ), - /* 198 */ array(67, ), + /* 175 */ array(62, ), + /* 176 */ array(44, ), + /* 177 */ array(55, ), + /* 178 */ array(16, ), + /* 179 */ array(62, ), + /* 180 */ array(67, ), + /* 181 */ array(67, ), + /* 182 */ array(52, ), + /* 183 */ array(18, ), + /* 184 */ array(47, ), + /* 185 */ array(16, ), + /* 186 */ array(1, ), + /* 187 */ array(69, ), + /* 188 */ array(64, ), + /* 189 */ array(5, ), + /* 190 */ array(5, ), + /* 191 */ array(16, ), + /* 192 */ array(45, ), + /* 193 */ array(45, ), + /* 194 */ array(51, ), + /* 195 */ array(70, ), + /* 196 */ array(1, ), + /* 197 */ array(45, ), + /* 198 */ array(60, ), /* 199 */ array(67, ), - /* 200 */ array(47, ), - /* 201 */ array(45, ), - /* 202 */ array(62, ), - /* 203 */ array(44, ), - /* 204 */ array(50, ), - /* 205 */ array(45, ), - /* 206 */ array(45, ), - /* 207 */ array(69, ), + /* 200 */ array(16, ), + /* 201 */ array(67, ), + /* 202 */ array(60, ), + /* 203 */ array(55, ), + /* 204 */ array(67, ), + /* 205 */ array(67, ), + /* 206 */ array(), + /* 207 */ array(), /* 208 */ array(), /* 209 */ array(), /* 210 */ array(), @@ -879,43 +879,40 @@ static public $yy_action = array( /* 311 */ array(), /* 312 */ array(), /* 313 */ array(), - /* 314 */ array(), - /* 315 */ array(), - /* 316 */ array(), ); static public $yy_default = array( - /* 0 */ 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, - /* 10 */ 492, 492, 492, 492, 473, 492, 431, 492, 431, 431, - /* 20 */ 492, 492, 431, 492, 492, 492, 492, 492, 492, 492, - /* 30 */ 492, 492, 492, 492, 492, 492, 492, 492, 492, 492, - /* 40 */ 492, 492, 492, 492, 492, 338, 492, 492, 393, 353, - /* 50 */ 338, 492, 353, 353, 353, 353, 441, 441, 441, 492, - /* 60 */ 403, 492, 403, 374, 492, 492, 492, 492, 492, 492, - /* 70 */ 492, 403, 492, 492, 396, 492, 492, 396, 388, 389, - /* 80 */ 353, 353, 353, 492, 492, 492, 450, 455, 439, 446, - /* 90 */ 341, 445, 454, 447, 451, 317, 492, 492, 492, 492, - /* 100 */ 362, 492, 436, 492, 492, 403, 424, 422, 492, 492, - /* 110 */ 401, 492, 346, 492, 476, 492, 347, 425, 430, 492, - /* 120 */ 423, 492, 344, 349, 348, 369, 475, 419, 391, 354, - /* 130 */ 332, 394, 364, 492, 360, 474, 442, 336, 339, 333, - /* 140 */ 337, 335, 370, 340, 334, 492, 403, 390, 403, 403, - /* 150 */ 435, 403, 435, 435, 361, 492, 361, 456, 492, 365, - /* 160 */ 492, 492, 492, 492, 361, 437, 365, 492, 492, 492, - /* 170 */ 358, 368, 492, 492, 492, 382, 377, 407, 492, 492, - /* 180 */ 492, 492, 492, 492, 417, 492, 492, 357, 492, 492, - /* 190 */ 492, 492, 492, 492, 492, 374, 492, 492, 492, 492, - /* 200 */ 492, 492, 492, 392, 492, 492, 492, 365, 318, 387, - /* 210 */ 327, 487, 329, 331, 411, 328, 330, 413, 412, 324, - /* 220 */ 428, 478, 410, 356, 426, 482, 321, 483, 325, 326, - /* 230 */ 323, 350, 485, 414, 443, 371, 372, 373, 363, 420, - /* 240 */ 381, 378, 379, 380, 415, 418, 488, 490, 491, 384, - /* 250 */ 383, 432, 433, 368, 367, 409, 365, 366, 376, 375, - /* 260 */ 434, 351, 319, 320, 322, 421, 397, 405, 406, 408, - /* 270 */ 404, 400, 402, 398, 399, 385, 489, 438, 448, 449, - /* 280 */ 452, 382, 457, 464, 465, 466, 453, 467, 416, 417, - /* 290 */ 359, 345, 343, 468, 469, 440, 463, 462, 481, 484, - /* 300 */ 352, 486, 480, 386, 477, 479, 429, 427, 459, 460, - /* 310 */ 461, 458, 444, 470, 472, 471, 395, + /* 0 */ 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, + /* 10 */ 488, 488, 488, 488, 469, 488, 427, 488, 427, 488, + /* 20 */ 427, 427, 488, 488, 488, 488, 488, 488, 488, 488, + /* 30 */ 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, + /* 40 */ 488, 488, 488, 488, 488, 334, 488, 389, 488, 349, + /* 50 */ 334, 488, 349, 349, 349, 349, 437, 437, 437, 488, + /* 60 */ 399, 488, 488, 370, 399, 488, 392, 488, 488, 488, + /* 70 */ 488, 488, 488, 488, 488, 399, 392, 385, 384, 349, + /* 80 */ 349, 349, 488, 488, 488, 446, 441, 435, 337, 451, + /* 90 */ 447, 442, 450, 443, 314, 488, 488, 488, 432, 488, + /* 100 */ 488, 358, 420, 426, 419, 472, 488, 488, 397, 488, + /* 110 */ 421, 488, 342, 488, 488, 488, 343, 399, 488, 418, + /* 120 */ 345, 360, 438, 331, 350, 329, 471, 330, 488, 470, + /* 130 */ 386, 399, 344, 328, 356, 365, 488, 340, 387, 366, + /* 140 */ 332, 390, 335, 333, 415, 336, 399, 399, 431, 399, + /* 150 */ 431, 431, 357, 488, 357, 452, 433, 488, 361, 361, + /* 160 */ 488, 488, 488, 357, 488, 488, 353, 488, 488, 378, + /* 170 */ 488, 413, 488, 488, 488, 488, 388, 488, 354, 488, + /* 180 */ 488, 488, 370, 364, 488, 488, 488, 361, 373, 488, + /* 190 */ 488, 488, 488, 488, 488, 488, 488, 488, 488, 488, + /* 200 */ 488, 488, 488, 488, 403, 488, 424, 407, 363, 374, + /* 210 */ 375, 405, 409, 408, 402, 404, 410, 371, 346, 320, + /* 220 */ 316, 317, 318, 319, 321, 322, 327, 315, 326, 325, + /* 230 */ 323, 324, 347, 430, 394, 398, 395, 396, 401, 400, + /* 240 */ 393, 417, 352, 361, 362, 372, 474, 422, 406, 367, + /* 250 */ 348, 448, 449, 445, 444, 423, 425, 480, 477, 476, + /* 260 */ 436, 465, 464, 482, 463, 466, 468, 460, 461, 459, + /* 270 */ 458, 456, 457, 462, 454, 378, 434, 467, 439, 440, + /* 280 */ 453, 475, 473, 369, 368, 391, 359, 414, 411, 455, + /* 290 */ 416, 481, 483, 479, 478, 377, 376, 428, 429, 487, + /* 300 */ 341, 381, 339, 382, 485, 412, 413, 379, 364, 380, + /* 310 */ 484, 486, 355, 383, ); /* The next thing included is series of defines which control ** various aspects of the generated parser. @@ -934,8 +931,8 @@ static public $yy_action = array( */ const YYNOCODE = 117; const YYSTACKDEPTH = 100; - const YYNSTATE = 317; - const YYNRULE = 175; + const YYNSTATE = 314; + const YYNRULE = 174; const YYERRORSYMBOL = 73; const YYERRSYMDT = 'yy0'; const YYFALLBACK = 1; @@ -1111,11 +1108,11 @@ static public $yy_action = array( 'SPACE', 'INSTANCEOF', 'QMARK', 'TYPECAST', 'SINGLEQUOTESTRING', 'error', 'start', 'template', 'template_element', 'smartytag', 'smartyclosetag', 'outputtag', - 'text', 'variable', 'attributes', 'expr', - 'ternary', 'varindexed', 'modifier', 'modparameters', - 'ifexprs', 'statement', 'statements', 'varvar', - 'foraction', 'value', 'array', 'attribute', - 'exprs', 'math', 'function', 'doublequoted', + 'variable', 'attributes', 'expr', 'ternary', + 'varindexed', 'modifier', 'modparameters', 'ifexprs', + 'statement', 'statements', 'varvar', 'foraction', + 'value', 'array', 'attribute', 'exprs', + 'math', 'function', 'text', 'doublequoted', 'method', 'params', 'objectchain', 'arrayindex', 'object', 'indexdef', 'varvarele', 'objectelement', 'modparameter', 'ifexpr', 'ifcond', 'lop', @@ -1134,174 +1131,173 @@ static public $yy_action = array( /* 4 */ "template_element ::= LDELSLASH smartyclosetag RDEL", /* 5 */ "template_element ::= LDEL outputtag RDEL", /* 6 */ "template_element ::= COMMENT", - /* 7 */ "template_element ::= LITERALSTART text LITERALEND", - /* 8 */ "template_element ::= LDELIMTAG", - /* 9 */ "template_element ::= RDELIMTAG", - /* 10 */ "template_element ::= PHP OTHER SHORTTAGEND", - /* 11 */ "template_element ::= SHORTTAGSTART OTHER SHORTTAGEND", - /* 12 */ "template_element ::= XML", - /* 13 */ "template_element ::= SHORTTAGEND", - /* 14 */ "template_element ::= OTHER", - /* 15 */ "outputtag ::= variable attributes", - /* 16 */ "outputtag ::= expr attributes", - /* 17 */ "outputtag ::= ternary attributes", - /* 18 */ "smartytag ::= varindexed EQUAL expr attributes", - /* 19 */ "smartytag ::= varindexed EQUAL ternary attributes", - /* 20 */ "smartytag ::= ID attributes", - /* 21 */ "smartytag ::= ID", - /* 22 */ "smartytag ::= ID PTR ID attributes", - /* 23 */ "smartytag ::= ID modifier modparameters attributes", - /* 24 */ "smartytag ::= ID SPACE ifexprs", - /* 25 */ "smartytag ::= ID SPACE statement", - /* 26 */ "smartytag ::= ID SPACE statements SEMICOLON ifexprs SEMICOLON DOLLAR varvar foraction", - /* 27 */ "foraction ::= EQUAL expr", - /* 28 */ "foraction ::= INCDEC", - /* 29 */ "smartytag ::= ID SPACE value AS DOLLAR varvar", - /* 30 */ "smartytag ::= ID SPACE array AS DOLLAR varvar", - /* 31 */ "smartyclosetag ::= ID attributes", - /* 32 */ "smartyclosetag ::= ID modifier modparameters attributes", - /* 33 */ "smartyclosetag ::= ID PTR ID", - /* 34 */ "attributes ::= attributes attribute", - /* 35 */ "attributes ::= attribute", - /* 36 */ "attributes ::=", - /* 37 */ "attribute ::= SPACE ID EQUAL expr", - /* 38 */ "attribute ::= SPACE ID EQUAL value", - /* 39 */ "attribute ::= SPACE ID EQUAL ternary", - /* 40 */ "attribute ::= SPACE ID", - /* 41 */ "statements ::= statement", - /* 42 */ "statements ::= statements COMMA statement", - /* 43 */ "statement ::= DOLLAR varvar EQUAL expr", - /* 44 */ "expr ::= ID", - /* 45 */ "expr ::= exprs", - /* 46 */ "expr ::= DOLLAR ID COLON ID", - /* 47 */ "expr ::= expr modifier modparameters", - /* 48 */ "exprs ::= value", - /* 49 */ "exprs ::= UNIMATH value", - /* 50 */ "exprs ::= exprs math value", - /* 51 */ "exprs ::= array", - /* 52 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", - /* 53 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", - /* 54 */ "math ::= UNIMATH", - /* 55 */ "math ::= MATH", - /* 56 */ "math ::= ANDSYM", - /* 57 */ "value ::= variable", - /* 58 */ "value ::= TYPECAST variable", - /* 59 */ "value ::= variable INCDEC", - /* 60 */ "value ::= INTEGER", - /* 61 */ "value ::= INTEGER DOT INTEGER", - /* 62 */ "value ::= BOOLEAN", - /* 63 */ "value ::= NULL", - /* 64 */ "value ::= function", - /* 65 */ "value ::= OPENP expr CLOSEP", - /* 66 */ "value ::= SINGLEQUOTESTRING", - /* 67 */ "value ::= SINGLEQUOTE text SINGLEQUOTE", - /* 68 */ "value ::= SINGLEQUOTE SINGLEQUOTE", - /* 69 */ "value ::= QUOTE doublequoted QUOTE", - /* 70 */ "value ::= QUOTE QUOTE", - /* 71 */ "value ::= ID DOUBLECOLON method", - /* 72 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", - /* 73 */ "value ::= ID DOUBLECOLON method objectchain", - /* 74 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", - /* 75 */ "value ::= ID DOUBLECOLON ID", - /* 76 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", - /* 77 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", - /* 78 */ "value ::= LDEL smartytag RDEL", - /* 79 */ "variable ::= varindexed", - /* 80 */ "variable ::= DOLLAR varvar AT ID", - /* 81 */ "variable ::= object", - /* 82 */ "variable ::= HATCH ID HATCH", - /* 83 */ "variable ::= HATCH variable HATCH", - /* 84 */ "varindexed ::= DOLLAR varvar arrayindex", - /* 85 */ "arrayindex ::= arrayindex indexdef", - /* 86 */ "arrayindex ::=", - /* 87 */ "indexdef ::= DOT ID", - /* 88 */ "indexdef ::= DOT BOOLEAN", - /* 89 */ "indexdef ::= DOT NULL", - /* 90 */ "indexdef ::= DOT INTEGER", - /* 91 */ "indexdef ::= DOT INTEGER ID", - /* 92 */ "indexdef ::= DOT variable", - /* 93 */ "indexdef ::= DOT LDEL exprs RDEL", - /* 94 */ "indexdef ::= OPENB ID CLOSEB", - /* 95 */ "indexdef ::= OPENB ID DOT ID CLOSEB", - /* 96 */ "indexdef ::= OPENB exprs CLOSEB", - /* 97 */ "indexdef ::= OPENB CLOSEB", - /* 98 */ "varvar ::= varvarele", - /* 99 */ "varvar ::= varvar varvarele", - /* 100 */ "varvarele ::= ID", - /* 101 */ "varvarele ::= LDEL expr RDEL", - /* 102 */ "object ::= varindexed objectchain", - /* 103 */ "objectchain ::= objectelement", - /* 104 */ "objectchain ::= objectchain objectelement", - /* 105 */ "objectelement ::= PTR ID arrayindex", - /* 106 */ "objectelement ::= PTR variable arrayindex", - /* 107 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", - /* 108 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", - /* 109 */ "objectelement ::= PTR method", - /* 110 */ "function ::= ID OPENP params CLOSEP", - /* 111 */ "method ::= ID OPENP params CLOSEP", - /* 112 */ "params ::= expr COMMA params", - /* 113 */ "params ::= expr", - /* 114 */ "params ::=", - /* 115 */ "modifier ::= VERT AT ID", - /* 116 */ "modifier ::= VERT ID", - /* 117 */ "modparameters ::= modparameters modparameter", - /* 118 */ "modparameters ::=", - /* 119 */ "modparameter ::= COLON exprs", - /* 120 */ "modparameter ::= COLON ID", - /* 121 */ "ifexprs ::= ifexpr", - /* 122 */ "ifexprs ::= NOT ifexprs", - /* 123 */ "ifexprs ::= OPENP ifexprs CLOSEP", - /* 124 */ "ifexpr ::= expr", - /* 125 */ "ifexpr ::= expr ifcond expr", - /* 126 */ "ifexpr ::= expr ISIN array", - /* 127 */ "ifexpr ::= expr ISIN value", - /* 128 */ "ifexpr ::= ifexprs lop ifexprs", - /* 129 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", - /* 130 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", - /* 131 */ "ifexpr ::= ifexprs ISEVEN", - /* 132 */ "ifexpr ::= ifexprs ISNOTEVEN", - /* 133 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", - /* 134 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", - /* 135 */ "ifexpr ::= ifexprs ISODD", - /* 136 */ "ifexpr ::= ifexprs ISNOTODD", - /* 137 */ "ifexpr ::= ifexprs ISODDBY ifexprs", - /* 138 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", - /* 139 */ "ifexpr ::= value INSTANCEOF ID", - /* 140 */ "ifexpr ::= value INSTANCEOF value", - /* 141 */ "ifcond ::= EQUALS", - /* 142 */ "ifcond ::= NOTEQUALS", - /* 143 */ "ifcond ::= GREATERTHAN", - /* 144 */ "ifcond ::= LESSTHAN", - /* 145 */ "ifcond ::= GREATEREQUAL", - /* 146 */ "ifcond ::= LESSEQUAL", - /* 147 */ "ifcond ::= IDENTITY", - /* 148 */ "ifcond ::= NONEIDENTITY", - /* 149 */ "ifcond ::= MOD", - /* 150 */ "lop ::= LAND", - /* 151 */ "lop ::= LOR", - /* 152 */ "lop ::= LXOR", - /* 153 */ "array ::= OPENB arrayelements CLOSEB", - /* 154 */ "arrayelements ::= arrayelement", - /* 155 */ "arrayelements ::= arrayelements COMMA arrayelement", - /* 156 */ "arrayelements ::=", - /* 157 */ "arrayelement ::= expr APTR expr", - /* 158 */ "arrayelement ::= ID APTR expr", - /* 159 */ "arrayelement ::= expr", - /* 160 */ "doublequoted ::= doublequoted doublequotedcontent", - /* 161 */ "doublequoted ::= doublequotedcontent", - /* 162 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", - /* 163 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", - /* 164 */ "doublequotedcontent ::= DOLLAR ID", - /* 165 */ "doublequotedcontent ::= LDEL expr RDEL", - /* 166 */ "doublequotedcontent ::= LDEL smartytag RDEL", - /* 167 */ "doublequotedcontent ::= DOLLAR OTHER", - /* 168 */ "doublequotedcontent ::= LDEL OTHER", - /* 169 */ "doublequotedcontent ::= BACKTICK OTHER", - /* 170 */ "doublequotedcontent ::= OTHER", - /* 171 */ "text ::= text textelement", - /* 172 */ "text ::= textelement", - /* 173 */ "textelement ::= OTHER", - /* 174 */ "textelement ::= LDEL", + /* 7 */ "template_element ::= LDELIMTAG", + /* 8 */ "template_element ::= RDELIMTAG", + /* 9 */ "template_element ::= PHP OTHER SHORTTAGEND", + /* 10 */ "template_element ::= SHORTTAGSTART OTHER SHORTTAGEND", + /* 11 */ "template_element ::= XML", + /* 12 */ "template_element ::= SHORTTAGEND", + /* 13 */ "template_element ::= OTHER", + /* 14 */ "outputtag ::= variable attributes", + /* 15 */ "outputtag ::= expr attributes", + /* 16 */ "outputtag ::= ternary attributes", + /* 17 */ "smartytag ::= varindexed EQUAL expr attributes", + /* 18 */ "smartytag ::= varindexed EQUAL ternary attributes", + /* 19 */ "smartytag ::= ID attributes", + /* 20 */ "smartytag ::= ID", + /* 21 */ "smartytag ::= ID PTR ID attributes", + /* 22 */ "smartytag ::= ID modifier modparameters attributes", + /* 23 */ "smartytag ::= ID SPACE ifexprs", + /* 24 */ "smartytag ::= ID SPACE statement", + /* 25 */ "smartytag ::= ID SPACE statements SEMICOLON ifexprs SEMICOLON DOLLAR varvar foraction", + /* 26 */ "foraction ::= EQUAL expr", + /* 27 */ "foraction ::= INCDEC", + /* 28 */ "smartytag ::= ID SPACE value AS DOLLAR varvar", + /* 29 */ "smartytag ::= ID SPACE array AS DOLLAR varvar", + /* 30 */ "smartyclosetag ::= ID attributes", + /* 31 */ "smartyclosetag ::= ID modifier modparameters attributes", + /* 32 */ "smartyclosetag ::= ID PTR ID", + /* 33 */ "attributes ::= attributes attribute", + /* 34 */ "attributes ::= attribute", + /* 35 */ "attributes ::=", + /* 36 */ "attribute ::= SPACE ID EQUAL expr", + /* 37 */ "attribute ::= SPACE ID EQUAL value", + /* 38 */ "attribute ::= SPACE ID EQUAL ternary", + /* 39 */ "attribute ::= SPACE ID", + /* 40 */ "statements ::= statement", + /* 41 */ "statements ::= statements COMMA statement", + /* 42 */ "statement ::= DOLLAR varvar EQUAL expr", + /* 43 */ "expr ::= ID", + /* 44 */ "expr ::= exprs", + /* 45 */ "expr ::= DOLLAR ID COLON ID", + /* 46 */ "expr ::= expr modifier modparameters", + /* 47 */ "exprs ::= value", + /* 48 */ "exprs ::= UNIMATH value", + /* 49 */ "exprs ::= exprs math value", + /* 50 */ "exprs ::= array", + /* 51 */ "ternary ::= OPENP ifexprs CLOSEP QMARK expr COLON expr", + /* 52 */ "ternary ::= OPENP expr CLOSEP QMARK expr COLON expr", + /* 53 */ "math ::= UNIMATH", + /* 54 */ "math ::= MATH", + /* 55 */ "math ::= ANDSYM", + /* 56 */ "value ::= variable", + /* 57 */ "value ::= TYPECAST variable", + /* 58 */ "value ::= variable INCDEC", + /* 59 */ "value ::= INTEGER", + /* 60 */ "value ::= INTEGER DOT INTEGER", + /* 61 */ "value ::= BOOLEAN", + /* 62 */ "value ::= NULL", + /* 63 */ "value ::= function", + /* 64 */ "value ::= OPENP expr CLOSEP", + /* 65 */ "value ::= SINGLEQUOTESTRING", + /* 66 */ "value ::= SINGLEQUOTE text SINGLEQUOTE", + /* 67 */ "value ::= SINGLEQUOTE SINGLEQUOTE", + /* 68 */ "value ::= QUOTE doublequoted QUOTE", + /* 69 */ "value ::= QUOTE QUOTE", + /* 70 */ "value ::= ID DOUBLECOLON method", + /* 71 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP", + /* 72 */ "value ::= ID DOUBLECOLON method objectchain", + /* 73 */ "value ::= ID DOUBLECOLON DOLLAR ID OPENP params CLOSEP objectchain", + /* 74 */ "value ::= ID DOUBLECOLON ID", + /* 75 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex", + /* 76 */ "value ::= ID DOUBLECOLON DOLLAR ID arrayindex objectchain", + /* 77 */ "value ::= LDEL smartytag RDEL", + /* 78 */ "variable ::= varindexed", + /* 79 */ "variable ::= DOLLAR varvar AT ID", + /* 80 */ "variable ::= object", + /* 81 */ "variable ::= HATCH ID HATCH", + /* 82 */ "variable ::= HATCH variable HATCH", + /* 83 */ "varindexed ::= DOLLAR varvar arrayindex", + /* 84 */ "arrayindex ::= arrayindex indexdef", + /* 85 */ "arrayindex ::=", + /* 86 */ "indexdef ::= DOT ID", + /* 87 */ "indexdef ::= DOT BOOLEAN", + /* 88 */ "indexdef ::= DOT NULL", + /* 89 */ "indexdef ::= DOT INTEGER", + /* 90 */ "indexdef ::= DOT INTEGER ID", + /* 91 */ "indexdef ::= DOT variable", + /* 92 */ "indexdef ::= DOT LDEL exprs RDEL", + /* 93 */ "indexdef ::= OPENB ID CLOSEB", + /* 94 */ "indexdef ::= OPENB ID DOT ID CLOSEB", + /* 95 */ "indexdef ::= OPENB exprs CLOSEB", + /* 96 */ "indexdef ::= OPENB CLOSEB", + /* 97 */ "varvar ::= varvarele", + /* 98 */ "varvar ::= varvar varvarele", + /* 99 */ "varvarele ::= ID", + /* 100 */ "varvarele ::= LDEL expr RDEL", + /* 101 */ "object ::= varindexed objectchain", + /* 102 */ "objectchain ::= objectelement", + /* 103 */ "objectchain ::= objectchain objectelement", + /* 104 */ "objectelement ::= PTR ID arrayindex", + /* 105 */ "objectelement ::= PTR variable arrayindex", + /* 106 */ "objectelement ::= PTR LDEL expr RDEL arrayindex", + /* 107 */ "objectelement ::= PTR ID LDEL expr RDEL arrayindex", + /* 108 */ "objectelement ::= PTR method", + /* 109 */ "function ::= ID OPENP params CLOSEP", + /* 110 */ "method ::= ID OPENP params CLOSEP", + /* 111 */ "params ::= expr COMMA params", + /* 112 */ "params ::= expr", + /* 113 */ "params ::=", + /* 114 */ "modifier ::= VERT AT ID", + /* 115 */ "modifier ::= VERT ID", + /* 116 */ "modparameters ::= modparameters modparameter", + /* 117 */ "modparameters ::=", + /* 118 */ "modparameter ::= COLON exprs", + /* 119 */ "modparameter ::= COLON ID", + /* 120 */ "ifexprs ::= ifexpr", + /* 121 */ "ifexprs ::= NOT ifexprs", + /* 122 */ "ifexprs ::= OPENP ifexprs CLOSEP", + /* 123 */ "ifexpr ::= expr", + /* 124 */ "ifexpr ::= expr ifcond expr", + /* 125 */ "ifexpr ::= expr ISIN array", + /* 126 */ "ifexpr ::= expr ISIN value", + /* 127 */ "ifexpr ::= ifexprs lop ifexprs", + /* 128 */ "ifexpr ::= ifexprs ISDIVBY ifexprs", + /* 129 */ "ifexpr ::= ifexprs ISNOTDIVBY ifexprs", + /* 130 */ "ifexpr ::= ifexprs ISEVEN", + /* 131 */ "ifexpr ::= ifexprs ISNOTEVEN", + /* 132 */ "ifexpr ::= ifexprs ISEVENBY ifexprs", + /* 133 */ "ifexpr ::= ifexprs ISNOTEVENBY ifexprs", + /* 134 */ "ifexpr ::= ifexprs ISODD", + /* 135 */ "ifexpr ::= ifexprs ISNOTODD", + /* 136 */ "ifexpr ::= ifexprs ISODDBY ifexprs", + /* 137 */ "ifexpr ::= ifexprs ISNOTODDBY ifexprs", + /* 138 */ "ifexpr ::= value INSTANCEOF ID", + /* 139 */ "ifexpr ::= value INSTANCEOF value", + /* 140 */ "ifcond ::= EQUALS", + /* 141 */ "ifcond ::= NOTEQUALS", + /* 142 */ "ifcond ::= GREATERTHAN", + /* 143 */ "ifcond ::= LESSTHAN", + /* 144 */ "ifcond ::= GREATEREQUAL", + /* 145 */ "ifcond ::= LESSEQUAL", + /* 146 */ "ifcond ::= IDENTITY", + /* 147 */ "ifcond ::= NONEIDENTITY", + /* 148 */ "ifcond ::= MOD", + /* 149 */ "lop ::= LAND", + /* 150 */ "lop ::= LOR", + /* 151 */ "lop ::= LXOR", + /* 152 */ "array ::= OPENB arrayelements CLOSEB", + /* 153 */ "arrayelements ::= arrayelement", + /* 154 */ "arrayelements ::= arrayelements COMMA arrayelement", + /* 155 */ "arrayelements ::=", + /* 156 */ "arrayelement ::= expr APTR expr", + /* 157 */ "arrayelement ::= ID APTR expr", + /* 158 */ "arrayelement ::= expr", + /* 159 */ "doublequoted ::= doublequoted doublequotedcontent", + /* 160 */ "doublequoted ::= doublequotedcontent", + /* 161 */ "doublequotedcontent ::= BACKTICK ID BACKTICK", + /* 162 */ "doublequotedcontent ::= BACKTICK variable BACKTICK", + /* 163 */ "doublequotedcontent ::= DOLLAR ID", + /* 164 */ "doublequotedcontent ::= LDEL expr RDEL", + /* 165 */ "doublequotedcontent ::= LDEL smartytag RDEL", + /* 166 */ "doublequotedcontent ::= DOLLAR OTHER", + /* 167 */ "doublequotedcontent ::= LDEL OTHER", + /* 168 */ "doublequotedcontent ::= BACKTICK OTHER", + /* 169 */ "doublequotedcontent ::= OTHER", + /* 170 */ "text ::= text textelement", + /* 171 */ "text ::= textelement", + /* 172 */ "textelement ::= OTHER", + /* 173 */ "textelement ::= LDEL", ); /** @@ -1673,7 +1669,6 @@ static public $yy_action = array( array( 'lhs' => 76, 'rhs' => 3 ), array( 'lhs' => 76, 'rhs' => 3 ), array( 'lhs' => 76, 'rhs' => 1 ), - array( 'lhs' => 76, 'rhs' => 3 ), array( 'lhs' => 76, 'rhs' => 1 ), array( 'lhs' => 76, 'rhs' => 1 ), array( 'lhs' => 76, 'rhs' => 3 ), @@ -1693,64 +1688,64 @@ static public $yy_action = array( array( 'lhs' => 77, 'rhs' => 3 ), array( 'lhs' => 77, 'rhs' => 3 ), array( 'lhs' => 77, 'rhs' => 9 ), - array( 'lhs' => 92, 'rhs' => 2 ), - array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 91, 'rhs' => 1 ), array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 77, 'rhs' => 6 ), array( 'lhs' => 78, 'rhs' => 2 ), array( 'lhs' => 78, 'rhs' => 4 ), array( 'lhs' => 78, 'rhs' => 3 ), - array( 'lhs' => 82, 'rhs' => 2 ), + array( 'lhs' => 81, 'rhs' => 2 ), + array( 'lhs' => 81, 'rhs' => 1 ), + array( 'lhs' => 81, 'rhs' => 0 ), + array( 'lhs' => 94, 'rhs' => 4 ), + array( 'lhs' => 94, 'rhs' => 4 ), + array( 'lhs' => 94, 'rhs' => 4 ), + array( 'lhs' => 94, 'rhs' => 2 ), + array( 'lhs' => 89, 'rhs' => 1 ), + array( 'lhs' => 89, 'rhs' => 3 ), + array( 'lhs' => 88, 'rhs' => 4 ), array( 'lhs' => 82, 'rhs' => 1 ), - array( 'lhs' => 82, 'rhs' => 0 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 4 ), - array( 'lhs' => 95, 'rhs' => 4 ), + array( 'lhs' => 82, 'rhs' => 1 ), + array( 'lhs' => 82, 'rhs' => 4 ), + array( 'lhs' => 82, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 1 ), array( 'lhs' => 95, 'rhs' => 2 ), - array( 'lhs' => 90, 'rhs' => 1 ), - array( 'lhs' => 90, 'rhs' => 3 ), - array( 'lhs' => 89, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 1 ), - array( 'lhs' => 83, 'rhs' => 4 ), - array( 'lhs' => 83, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 3 ), + array( 'lhs' => 95, 'rhs' => 1 ), + array( 'lhs' => 83, 'rhs' => 7 ), + array( 'lhs' => 83, 'rhs' => 7 ), array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 96, 'rhs' => 2 ), - array( 'lhs' => 96, 'rhs' => 3 ), array( 'lhs' => 96, 'rhs' => 1 ), - array( 'lhs' => 84, 'rhs' => 7 ), - array( 'lhs' => 84, 'rhs' => 7 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 97, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 1 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 2 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 7 ), - array( 'lhs' => 93, 'rhs' => 4 ), - array( 'lhs' => 93, 'rhs' => 8 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 93, 'rhs' => 5 ), - array( 'lhs' => 93, 'rhs' => 6 ), - array( 'lhs' => 93, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 4 ), - array( 'lhs' => 81, 'rhs' => 1 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 81, 'rhs' => 3 ), - array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 96, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 1 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 2 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 7 ), + array( 'lhs' => 92, 'rhs' => 4 ), + array( 'lhs' => 92, 'rhs' => 8 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 92, 'rhs' => 5 ), + array( 'lhs' => 92, 'rhs' => 6 ), + array( 'lhs' => 92, 'rhs' => 3 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 4 ), + array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 80, 'rhs' => 3 ), + array( 'lhs' => 80, 'rhs' => 3 ), + array( 'lhs' => 84, 'rhs' => 3 ), array( 'lhs' => 103, 'rhs' => 2 ), array( 'lhs' => 103, 'rhs' => 0 ), array( 'lhs' => 105, 'rhs' => 2 ), @@ -1764,8 +1759,8 @@ static public $yy_action = array( array( 'lhs' => 105, 'rhs' => 5 ), array( 'lhs' => 105, 'rhs' => 3 ), array( 'lhs' => 105, 'rhs' => 2 ), - array( 'lhs' => 91, 'rhs' => 1 ), - array( 'lhs' => 91, 'rhs' => 2 ), + array( 'lhs' => 90, 'rhs' => 1 ), + array( 'lhs' => 90, 'rhs' => 2 ), array( 'lhs' => 106, 'rhs' => 1 ), array( 'lhs' => 106, 'rhs' => 3 ), array( 'lhs' => 104, 'rhs' => 2 ), @@ -1776,20 +1771,20 @@ static public $yy_action = array( array( 'lhs' => 107, 'rhs' => 5 ), array( 'lhs' => 107, 'rhs' => 6 ), array( 'lhs' => 107, 'rhs' => 2 ), - array( 'lhs' => 98, 'rhs' => 4 ), + array( 'lhs' => 97, 'rhs' => 4 ), array( 'lhs' => 100, 'rhs' => 4 ), array( 'lhs' => 101, 'rhs' => 3 ), array( 'lhs' => 101, 'rhs' => 1 ), array( 'lhs' => 101, 'rhs' => 0 ), - array( 'lhs' => 86, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 3 ), + array( 'lhs' => 85, 'rhs' => 2 ), array( 'lhs' => 86, 'rhs' => 2 ), + array( 'lhs' => 86, 'rhs' => 0 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 108, 'rhs' => 2 ), + array( 'lhs' => 87, 'rhs' => 1 ), array( 'lhs' => 87, 'rhs' => 2 ), - array( 'lhs' => 87, 'rhs' => 0 ), - array( 'lhs' => 108, 'rhs' => 2 ), - array( 'lhs' => 108, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 1 ), - array( 'lhs' => 88, 'rhs' => 2 ), - array( 'lhs' => 88, 'rhs' => 3 ), + array( 'lhs' => 87, 'rhs' => 3 ), array( 'lhs' => 109, 'rhs' => 1 ), array( 'lhs' => 109, 'rhs' => 3 ), array( 'lhs' => 109, 'rhs' => 3 ), @@ -1819,7 +1814,7 @@ static public $yy_action = array( array( 'lhs' => 111, 'rhs' => 1 ), array( 'lhs' => 111, 'rhs' => 1 ), array( 'lhs' => 111, 'rhs' => 1 ), - array( 'lhs' => 94, 'rhs' => 3 ), + array( 'lhs' => 93, 'rhs' => 3 ), array( 'lhs' => 112, 'rhs' => 1 ), array( 'lhs' => 112, 'rhs' => 3 ), array( 'lhs' => 112, 'rhs' => 0 ), @@ -1837,8 +1832,8 @@ static public $yy_action = array( array( 'lhs' => 114, 'rhs' => 2 ), array( 'lhs' => 114, 'rhs' => 2 ), array( 'lhs' => 114, 'rhs' => 1 ), - array( 'lhs' => 80, 'rhs' => 2 ), - array( 'lhs' => 80, 'rhs' => 1 ), + array( 'lhs' => 98, 'rhs' => 2 ), + array( 'lhs' => 98, 'rhs' => 1 ), array( 'lhs' => 115, 'rhs' => 1 ), array( 'lhs' => 115, 'rhs' => 1 ), ); @@ -1851,29 +1846,29 @@ static public $yy_action = array( */ static public $yyReduceMap = array( 0 => 0, - 48 => 0, - 57 => 0, - 60 => 0, + 47 => 0, + 56 => 0, + 59 => 0, + 61 => 0, 62 => 0, 63 => 0, - 64 => 0, - 66 => 0, - 81 => 0, - 154 => 0, + 65 => 0, + 80 => 0, + 153 => 0, 1 => 1, - 45 => 1, - 51 => 1, + 44 => 1, + 50 => 1, + 53 => 1, 54 => 1, - 55 => 1, - 98 => 1, - 121 => 1, - 161 => 1, - 170 => 1, + 97 => 1, + 120 => 1, + 160 => 1, + 169 => 1, + 171 => 1, 172 => 1, 173 => 1, - 174 => 1, 2 => 2, - 117 => 2, + 116 => 2, 3 => 3, 4 => 4, 5 => 5, @@ -1886,11 +1881,11 @@ static public $yy_action = array( 12 => 12, 13 => 13, 14 => 14, - 15 => 15, - 16 => 15, - 17 => 15, - 18 => 18, - 19 => 18, + 15 => 14, + 16 => 14, + 17 => 17, + 18 => 17, + 19 => 19, 20 => 20, 21 => 21, 22 => 22, @@ -1899,40 +1894,40 @@ static public $yy_action = array( 25 => 25, 26 => 26, 27 => 27, + 34 => 27, + 112 => 27, + 158 => 27, 28 => 28, - 35 => 28, - 113 => 28, - 159 => 28, 29 => 29, 30 => 30, 31 => 31, 32 => 32, 33 => 33, - 34 => 34, + 35 => 35, 36 => 36, - 37 => 37, - 38 => 37, - 39 => 37, + 37 => 36, + 38 => 36, + 39 => 39, 40 => 40, 41 => 41, 42 => 42, 43 => 43, - 44 => 44, + 45 => 45, 46 => 46, - 47 => 47, + 48 => 48, + 57 => 48, + 58 => 48, 49 => 49, - 58 => 49, - 59 => 49, - 50 => 50, - 52 => 52, - 53 => 52, - 56 => 56, - 61 => 61, - 65 => 65, + 51 => 51, + 52 => 51, + 55 => 55, + 60 => 60, + 64 => 64, + 66 => 66, 67 => 67, + 69 => 67, 68 => 68, - 70 => 68, - 69 => 69, + 70 => 70, 71 => 71, 72 => 72, 73 => 73, @@ -1942,31 +1937,31 @@ static public $yy_action = array( 77 => 77, 78 => 78, 79 => 79, - 80 => 80, + 81 => 81, 82 => 82, 83 => 83, 84 => 84, + 159 => 84, + 167 => 84, + 170 => 84, 85 => 85, - 160 => 85, - 168 => 85, - 171 => 85, + 117 => 85, 86 => 86, - 118 => 86, - 87 => 87, - 88 => 87, - 89 => 87, + 87 => 86, + 88 => 86, + 89 => 89, 90 => 90, 91 => 91, 92 => 92, + 95 => 92, 93 => 93, - 96 => 93, 94 => 94, - 95 => 95, - 97 => 97, + 96 => 96, + 98 => 98, 99 => 99, 100 => 100, + 122 => 100, 101 => 101, - 123 => 101, 102 => 102, 103 => 103, 104 => 104, @@ -1977,29 +1972,29 @@ static public $yy_action = array( 109 => 109, 110 => 110, 111 => 111, - 112 => 112, + 113 => 113, 114 => 114, 115 => 115, - 116 => 116, + 118 => 118, 119 => 119, - 120 => 120, - 122 => 122, + 121 => 121, + 123 => 123, 124 => 124, + 127 => 124, + 138 => 124, 125 => 125, - 128 => 125, - 139 => 125, 126 => 126, - 127 => 127, + 128 => 128, 129 => 129, 130 => 130, + 135 => 130, 131 => 131, - 136 => 131, + 134 => 131, 132 => 132, - 135 => 132, + 137 => 132, 133 => 133, - 138 => 133, - 134 => 134, - 137 => 134, + 136 => 133, + 139 => 139, 140 => 140, 141 => 141, 142 => 142, @@ -2013,18 +2008,17 @@ static public $yy_action = array( 150 => 150, 151 => 151, 152 => 152, - 153 => 153, + 154 => 154, 155 => 155, 156 => 156, 157 => 157, - 158 => 158, + 161 => 161, 162 => 162, 163 => 163, 164 => 164, 165 => 165, 166 => 166, - 167 => 167, - 169 => 169, + 168 => 168, ); /* Beginning here are the reduction cases. A typical example ** follows: @@ -2034,48 +2028,45 @@ static public $yy_action = array( */ #line 79 "smarty_internal_templateparser.y" function yy_r0(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2042 "smarty_internal_templateparser.php" +#line 2036 "smarty_internal_templateparser.php" #line 85 "smarty_internal_templateparser.y" function yy_r1(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2045 "smarty_internal_templateparser.php" +#line 2039 "smarty_internal_templateparser.php" #line 87 "smarty_internal_templateparser.y" function yy_r2(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2048 "smarty_internal_templateparser.php" +#line 2042 "smarty_internal_templateparser.php" #line 93 "smarty_internal_templateparser.y" function yy_r3(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2055 "smarty_internal_templateparser.php" +#line 2049 "smarty_internal_templateparser.php" #line 99 "smarty_internal_templateparser.y" function yy_r4(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2062 "smarty_internal_templateparser.php" +#line 2056 "smarty_internal_templateparser.php" #line 105 "smarty_internal_templateparser.y" function yy_r5(){ if ($this->compiler->has_code) { $tmp =''; foreach ($this->compiler->prefix_code as $code) {$tmp.=$code;} $this->compiler->prefix_code=array(); $this->_retvalue = $this->cacher->processNocacheCode($tmp.$this->yystack[$this->yyidx + -1]->minor, $this->compiler,true); } else { $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor;} $this->compiler->has_variable_string = false; } -#line 2069 "smarty_internal_templateparser.php" +#line 2063 "smarty_internal_templateparser.php" #line 111 "smarty_internal_templateparser.y" function yy_r6(){ $this->_retvalue = ''; } +#line 2066 "smarty_internal_templateparser.php" +#line 116 "smarty_internal_templateparser.y" + function yy_r7(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); } +#line 2069 "smarty_internal_templateparser.php" +#line 118 "smarty_internal_templateparser.y" + function yy_r8(){ $this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); } #line 2072 "smarty_internal_templateparser.php" -#line 113 "smarty_internal_templateparser.y" - function yy_r7(){ $this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + -1]->minor, $this->compiler,false); } -#line 2075 "smarty_internal_templateparser.php" -#line 115 "smarty_internal_templateparser.y" - function yy_r8(){$this->_retvalue = $this->cacher->processNocacheCode($this->smarty->left_delimiter, $this->compiler,false); } -#line 2078 "smarty_internal_templateparser.php" -#line 117 "smarty_internal_templateparser.y" - function yy_r9(){ $this->_retvalue = $this->cacher->processNocacheCode($this->smarty->right_delimiter, $this->compiler,false); } -#line 2081 "smarty_internal_templateparser.php" -#line 119 "smarty_internal_templateparser.y" - function yy_r10(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { +#line 120 "smarty_internal_templateparser.y" + function yy_r9(){if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor)."?>', ENT_QUOTES);?>\n", $this->compiler, false); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { $this->_retvalue = $this->cacher->processNocacheCode(htmlspecialchars('yystack[$this->yyidx + -1]->minor.'?>', ENT_QUOTES), $this->compiler, false); @@ -2085,9 +2076,9 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2093 "smarty_internal_templateparser.php" -#line 130 "smarty_internal_templateparser.y" - function yy_r11(){ +#line 2084 "smarty_internal_templateparser.php" +#line 131 "smarty_internal_templateparser.y" + function yy_r10(){ if ($this->sec_obj->php_handling == SMARTY_PHP_PASSTHRU || $this->sec_obj->php_handling == SMARTY_PHP_ALLOW) { $this->_retvalue = $this->cacher->processNocacheCode("yystack[$this->yyidx + -1]->minor."?>'?>\n", $this->compiler, false); } elseif ($this->sec_obj->php_handling == SMARTY_PHP_QUOTE) { @@ -2096,33 +2087,33 @@ static public $yy_action = array( $this->_retvalue = ''; } } -#line 2104 "smarty_internal_templateparser.php" -#line 141 "smarty_internal_templateparser.y" - function yy_r12(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } -#line 2107 "smarty_internal_templateparser.php" +#line 2095 "smarty_internal_templateparser.php" #line 142 "smarty_internal_templateparser.y" - function yy_r13(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } + function yy_r11(){ $this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("", $this->compiler, true); } +#line 2098 "smarty_internal_templateparser.php" +#line 143 "smarty_internal_templateparser.y" + function yy_r12(){$this->compiler->tag_nocache = true; $this->_retvalue = $this->cacher->processNocacheCode("';?>\n", $this->compiler, true); } +#line 2101 "smarty_internal_templateparser.php" +#line 146 "smarty_internal_templateparser.y" + function yy_r13(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } +#line 2104 "smarty_internal_templateparser.php" +#line 153 "smarty_internal_templateparser.y" + function yy_r14(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } +#line 2107 "smarty_internal_templateparser.php" +#line 163 "smarty_internal_templateparser.y" + function yy_r17(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor)); } #line 2110 "smarty_internal_templateparser.php" -#line 145 "smarty_internal_templateparser.y" - function yy_r14(){$this->_retvalue = $this->cacher->processNocacheCode($this->yystack[$this->yyidx + 0]->minor, $this->compiler,false); } -#line 2113 "smarty_internal_templateparser.php" -#line 152 "smarty_internal_templateparser.y" - function yy_r15(){ $this->_retvalue = $this->compiler->compileTag('print_expression',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2116 "smarty_internal_templateparser.php" -#line 162 "smarty_internal_templateparser.y" - function yy_r18(){ $this->_retvalue = $this->compiler->compileTag('assign',array_merge(array('value'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor)); } -#line 2119 "smarty_internal_templateparser.php" -#line 165 "smarty_internal_templateparser.y" - function yy_r20(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } -#line 2122 "smarty_internal_templateparser.php" #line 166 "smarty_internal_templateparser.y" - function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor,array()); } -#line 2125 "smarty_internal_templateparser.php" -#line 168 "smarty_internal_templateparser.y" - function yy_r22(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } -#line 2128 "smarty_internal_templateparser.php" -#line 170 "smarty_internal_templateparser.y" - function yy_r23(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2113 "smarty_internal_templateparser.php" +#line 167 "smarty_internal_templateparser.y" + function yy_r20(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + 0]->minor,array()); } +#line 2116 "smarty_internal_templateparser.php" +#line 169 "smarty_internal_templateparser.y" + function yy_r21(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,array_merge(array('object_methode'=>$this->yystack[$this->yyidx + -1]->minor),$this->yystack[$this->yyidx + 0]->minor)); } +#line 2119 "smarty_internal_templateparser.php" +#line 171 "smarty_internal_templateparser.y" + function yy_r22(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor,$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -2]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -1]->minor. "),".$this->yystack[$this->yyidx + -2]->minor[1].");?>"; } else { @@ -2135,51 +2126,51 @@ static public $yy_action = array( } } } -#line 2143 "smarty_internal_templateparser.php" -#line 184 "smarty_internal_templateparser.y" - function yy_r24(){if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { +#line 2134 "smarty_internal_templateparser.php" +#line 185 "smarty_internal_templateparser.y" + function yy_r23(){if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2149 "smarty_internal_templateparser.php" -#line 188 "smarty_internal_templateparser.y" - function yy_r25(){ if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { +#line 2140 "smarty_internal_templateparser.php" +#line 189 "smarty_internal_templateparser.y" + function yy_r24(){ if (!in_array($this->yystack[$this->yyidx + -2]->minor,array('if','elseif','while'))) { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -2]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor,array('if condition'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2155 "smarty_internal_templateparser.php" -#line 193 "smarty_internal_templateparser.y" - function yy_r26(){ +#line 2146 "smarty_internal_templateparser.php" +#line 194 "smarty_internal_templateparser.y" + function yy_r25(){ if ($this->yystack[$this->yyidx + -8]->minor != 'for') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -8]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -8]->minor,array('start'=>$this->yystack[$this->yyidx + -6]->minor,'ifexp'=>$this->yystack[$this->yyidx + -4]->minor,'varloop'=>$this->yystack[$this->yyidx + -1]->minor,'loop'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2162 "smarty_internal_templateparser.php" -#line 198 "smarty_internal_templateparser.y" - function yy_r27(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } -#line 2165 "smarty_internal_templateparser.php" +#line 2153 "smarty_internal_templateparser.php" #line 199 "smarty_internal_templateparser.y" - function yy_r28(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2168 "smarty_internal_templateparser.php" -#line 201 "smarty_internal_templateparser.y" - function yy_r29(){ + function yy_r26(){ $this->_retvalue = '='.$this->yystack[$this->yyidx + 0]->minor; } +#line 2156 "smarty_internal_templateparser.php" +#line 200 "smarty_internal_templateparser.y" + function yy_r27(){ $this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2159 "smarty_internal_templateparser.php" +#line 202 "smarty_internal_templateparser.y" + function yy_r28(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2175 "smarty_internal_templateparser.php" -#line 206 "smarty_internal_templateparser.y" - function yy_r30(){ +#line 2166 "smarty_internal_templateparser.php" +#line 207 "smarty_internal_templateparser.y" + function yy_r29(){ if ($this->yystack[$this->yyidx + -5]->minor != 'foreach') { $this->compiler->trigger_template_error ("wrong syntax for tag \"" . $this->yystack[$this->yyidx + -5]->minor . "\""); } $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -5]->minor,array('from'=>$this->yystack[$this->yyidx + -3]->minor,'item'=>$this->yystack[$this->yyidx + 0]->minor)); } -#line 2182 "smarty_internal_templateparser.php" -#line 213 "smarty_internal_templateparser.y" - function yy_r31(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',$this->yystack[$this->yyidx + 0]->minor); } -#line 2185 "smarty_internal_templateparser.php" +#line 2173 "smarty_internal_templateparser.php" #line 214 "smarty_internal_templateparser.y" - function yy_r32(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',$this->yystack[$this->yyidx + 0]->minor).'_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -1]->minor.'close',$this->yystack[$this->yyidx + 0]->minor); } +#line 2176 "smarty_internal_templateparser.php" +#line 215 "smarty_internal_templateparser.y" + function yy_r31(){ $this->_retvalue = ''.$this->compiler->compileTag($this->yystack[$this->yyidx + -3]->minor.'close',$this->yystack[$this->yyidx + 0]->minor).'smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -2]->minor[0],'modifier')) { $this->_retvalue .= "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -2]->minor[0] . "',array(ob_get_clean()" . $this->yystack[$this->yyidx + -1]->minor. "),".$this->yystack[$this->yyidx + -2]->minor[1].");?>"; } else { @@ -2192,39 +2183,39 @@ static public $yy_action = array( } } } +#line 2191 "smarty_internal_templateparser.php" +#line 229 "smarty_internal_templateparser.y" + function yy_r32(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + 0]->minor)); } +#line 2194 "smarty_internal_templateparser.php" +#line 236 "smarty_internal_templateparser.y" + function yy_r33(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 2197 "smarty_internal_templateparser.php" +#line 240 "smarty_internal_templateparser.y" + function yy_r35(){ $this->_retvalue = array(); } #line 2200 "smarty_internal_templateparser.php" -#line 228 "smarty_internal_templateparser.y" - function yy_r33(){ $this->_retvalue = $this->compiler->compileTag($this->yystack[$this->yyidx + -2]->minor.'close',array('object_methode'=>$this->yystack[$this->yyidx + 0]->minor)); } +#line 243 "smarty_internal_templateparser.y" + function yy_r36(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } #line 2203 "smarty_internal_templateparser.php" -#line 235 "smarty_internal_templateparser.y" - function yy_r34(){ $this->_retvalue = array_merge($this->yystack[$this->yyidx + -1]->minor,$this->yystack[$this->yyidx + 0]->minor); } +#line 246 "smarty_internal_templateparser.y" + function yy_r39(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } #line 2206 "smarty_internal_templateparser.php" -#line 239 "smarty_internal_templateparser.y" - function yy_r36(){ $this->_retvalue = array(); } -#line 2209 "smarty_internal_templateparser.php" -#line 242 "smarty_internal_templateparser.y" - function yy_r37(){ $this->_retvalue = array($this->yystack[$this->yyidx + -2]->minor=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2212 "smarty_internal_templateparser.php" -#line 245 "smarty_internal_templateparser.y" - function yy_r40(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor=>'true'); } -#line 2215 "smarty_internal_templateparser.php" -#line 251 "smarty_internal_templateparser.y" - function yy_r41(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } -#line 2218 "smarty_internal_templateparser.php" #line 252 "smarty_internal_templateparser.y" - function yy_r42(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } -#line 2221 "smarty_internal_templateparser.php" -#line 254 "smarty_internal_templateparser.y" - function yy_r43(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } -#line 2224 "smarty_internal_templateparser.php" -#line 260 "smarty_internal_templateparser.y" - function yy_r44(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2227 "smarty_internal_templateparser.php" -#line 263 "smarty_internal_templateparser.y" - function yy_r46(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } -#line 2230 "smarty_internal_templateparser.php" + function yy_r40(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor); } +#line 2209 "smarty_internal_templateparser.php" +#line 253 "smarty_internal_templateparser.y" + function yy_r41(){ $this->yystack[$this->yyidx + -2]->minor[]=$this->yystack[$this->yyidx + 0]->minor; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor; } +#line 2212 "smarty_internal_templateparser.php" +#line 255 "smarty_internal_templateparser.y" + function yy_r42(){ $this->_retvalue = array('var' => $this->yystack[$this->yyidx + -2]->minor, 'value'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2215 "smarty_internal_templateparser.php" +#line 261 "smarty_internal_templateparser.y" + function yy_r43(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2218 "smarty_internal_templateparser.php" #line 264 "smarty_internal_templateparser.y" - function yy_r47(){ + function yy_r45(){$this->_retvalue = '$_smarty_tpl->getStreamVariable(\''. $this->yystack[$this->yyidx + -2]->minor .'://'. $this->yystack[$this->yyidx + 0]->minor . '\')'; } +#line 2221 "smarty_internal_templateparser.php" +#line 265 "smarty_internal_templateparser.y" + function yy_r46(){ if ($this->smarty->plugin_handler->loadSmartyPlugin($this->yystack[$this->yyidx + -1]->minor[0],'modifier')) { $this->_retvalue = "\$_smarty_tpl->smarty->plugin_handler->executeModifier('".$this->yystack[$this->yyidx + -1]->minor[0] . "',array(". $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + 0]->minor. "),".$this->yystack[$this->yyidx + -1]->minor[1].")"; } else { @@ -2237,276 +2228,276 @@ static public $yy_action = array( } } } +#line 2236 "smarty_internal_templateparser.php" +#line 282 "smarty_internal_templateparser.y" + function yy_r48(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2239 "smarty_internal_templateparser.php" +#line 284 "smarty_internal_templateparser.y" + function yy_r49(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } +#line 2242 "smarty_internal_templateparser.php" +#line 291 "smarty_internal_templateparser.y" + function yy_r51(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } #line 2245 "smarty_internal_templateparser.php" -#line 281 "smarty_internal_templateparser.y" - function yy_r49(){ $this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 305 "smarty_internal_templateparser.y" + function yy_r55(){$this->_retvalue = ' & '; } #line 2248 "smarty_internal_templateparser.php" -#line 283 "smarty_internal_templateparser.y" - function yy_r50(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor . $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor; } +#line 313 "smarty_internal_templateparser.y" + function yy_r60(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } #line 2251 "smarty_internal_templateparser.php" -#line 290 "smarty_internal_templateparser.y" - function yy_r52(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.' ? '.$this->yystack[$this->yyidx + -2]->minor.' : '.$this->yystack[$this->yyidx + 0]->minor; } +#line 321 "smarty_internal_templateparser.y" + function yy_r64(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } #line 2254 "smarty_internal_templateparser.php" -#line 304 "smarty_internal_templateparser.y" - function yy_r56(){$this->_retvalue = ' & '; } -#line 2257 "smarty_internal_templateparser.php" -#line 312 "smarty_internal_templateparser.y" - function yy_r61(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2260 "smarty_internal_templateparser.php" -#line 320 "smarty_internal_templateparser.y" - function yy_r65(){ $this->_retvalue = "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2263 "smarty_internal_templateparser.php" -#line 323 "smarty_internal_templateparser.y" - function yy_r67(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } -#line 2266 "smarty_internal_templateparser.php" #line 324 "smarty_internal_templateparser.y" - function yy_r68(){ $this->_retvalue = "''"; } -#line 2269 "smarty_internal_templateparser.php" -#line 326 "smarty_internal_templateparser.y" - function yy_r69(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } -#line 2272 "smarty_internal_templateparser.php" -#line 329 "smarty_internal_templateparser.y" - function yy_r71(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2275 "smarty_internal_templateparser.php" + function yy_r66(){ $this->_retvalue = "'".$this->yystack[$this->yyidx + -1]->minor."'"; } +#line 2257 "smarty_internal_templateparser.php" +#line 325 "smarty_internal_templateparser.y" + function yy_r67(){ $this->_retvalue = "''"; } +#line 2260 "smarty_internal_templateparser.php" +#line 327 "smarty_internal_templateparser.y" + function yy_r68(){ $this->_retvalue = '"'.$this->yystack[$this->yyidx + -1]->minor.'"'; } +#line 2263 "smarty_internal_templateparser.php" #line 330 "smarty_internal_templateparser.y" - function yy_r72(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } -#line 2278 "smarty_internal_templateparser.php" -#line 332 "smarty_internal_templateparser.y" - function yy_r73(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2281 "smarty_internal_templateparser.php" + function yy_r70(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2266 "smarty_internal_templateparser.php" +#line 331 "smarty_internal_templateparser.y" + function yy_r71(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -3]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -6]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2269 "smarty_internal_templateparser.php" #line 333 "smarty_internal_templateparser.y" - function yy_r74(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } + function yy_r72(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor.'::'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2272 "smarty_internal_templateparser.php" +#line 334 "smarty_internal_templateparser.y" + function yy_r73(){ $this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'=$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + -4]->minor .'\')->value;?>'; $this->_retvalue = $this->yystack[$this->yyidx + -7]->minor.'::$_tmp'.$this->prefix_number.'('. $this->yystack[$this->yyidx + -2]->minor .')'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2275 "smarty_internal_templateparser.php" +#line 336 "smarty_internal_templateparser.y" + function yy_r74(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2278 "smarty_internal_templateparser.php" +#line 338 "smarty_internal_templateparser.y" + function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2281 "smarty_internal_templateparser.php" +#line 340 "smarty_internal_templateparser.y" + function yy_r76(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } #line 2284 "smarty_internal_templateparser.php" -#line 335 "smarty_internal_templateparser.y" - function yy_r75(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'::'.$this->yystack[$this->yyidx + 0]->minor; } +#line 342 "smarty_internal_templateparser.y" + function yy_r77(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } #line 2287 "smarty_internal_templateparser.php" -#line 337 "smarty_internal_templateparser.y" - function yy_r76(){ $this->_retvalue = $this->yystack[$this->yyidx + -4]->minor.'::$'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2290 "smarty_internal_templateparser.php" -#line 339 "smarty_internal_templateparser.y" - function yy_r77(){ $this->_retvalue = $this->yystack[$this->yyidx + -5]->minor.'::$'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2293 "smarty_internal_templateparser.php" -#line 341 "smarty_internal_templateparser.y" - function yy_r78(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '$_tmp'.$this->prefix_number; } -#line 2296 "smarty_internal_templateparser.php" -#line 350 "smarty_internal_templateparser.y" - function yy_r79(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { +#line 351 "smarty_internal_templateparser.y" + function yy_r78(){if ($this->yystack[$this->yyidx + 0]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + 0]->minor['index']);} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + 0]->minor['var'] .')->value'.$this->yystack[$this->yyidx + 0]->minor['index']; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor['var'],"'"))->nocache;} } -#line 2300 "smarty_internal_templateparser.php" -#line 353 "smarty_internal_templateparser.y" - function yy_r80(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; } -#line 2303 "smarty_internal_templateparser.php" -#line 357 "smarty_internal_templateparser.y" - function yy_r82(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } -#line 2306 "smarty_internal_templateparser.php" +#line 2291 "smarty_internal_templateparser.php" +#line 354 "smarty_internal_templateparser.y" + function yy_r79(){ $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -2]->minor .')->'.$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -2]->minor,"'"))->nocache; } +#line 2294 "smarty_internal_templateparser.php" #line 358 "smarty_internal_templateparser.y" - function yy_r83(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } + function yy_r81(){$this->_retvalue = '$_smarty_tpl->getConfigVariable(\''. $this->yystack[$this->yyidx + -1]->minor .'\')'; } +#line 2297 "smarty_internal_templateparser.php" +#line 359 "smarty_internal_templateparser.y" + function yy_r82(){$this->_retvalue = '$_smarty_tpl->getConfigVariable('. $this->yystack[$this->yyidx + -1]->minor .')'; } +#line 2300 "smarty_internal_templateparser.php" +#line 362 "smarty_internal_templateparser.y" + function yy_r83(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 2303 "smarty_internal_templateparser.php" +#line 368 "smarty_internal_templateparser.y" + function yy_r84(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2306 "smarty_internal_templateparser.php" +#line 370 "smarty_internal_templateparser.y" + function yy_r85(){return; } #line 2309 "smarty_internal_templateparser.php" -#line 361 "smarty_internal_templateparser.y" - function yy_r84(){$this->_retvalue = array('var'=>$this->yystack[$this->yyidx + -1]->minor, 'index'=>$this->yystack[$this->yyidx + 0]->minor); } +#line 374 "smarty_internal_templateparser.y" + function yy_r86(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } #line 2312 "smarty_internal_templateparser.php" -#line 367 "smarty_internal_templateparser.y" - function yy_r85(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2315 "smarty_internal_templateparser.php" -#line 369 "smarty_internal_templateparser.y" - function yy_r86(){return; } -#line 2318 "smarty_internal_templateparser.php" -#line 373 "smarty_internal_templateparser.y" - function yy_r87(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2321 "smarty_internal_templateparser.php" -#line 376 "smarty_internal_templateparser.y" - function yy_r90(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } -#line 2324 "smarty_internal_templateparser.php" #line 377 "smarty_internal_templateparser.y" - function yy_r91(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor ."']"; } -#line 2327 "smarty_internal_templateparser.php" + function yy_r89(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + 0]->minor ."]"; } +#line 2315 "smarty_internal_templateparser.php" #line 378 "smarty_internal_templateparser.y" - function yy_r92(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } -#line 2330 "smarty_internal_templateparser.php" + function yy_r90(){ $this->_retvalue = "['". $this->yystack[$this->yyidx + -1]->minor . $this->yystack[$this->yyidx + 0]->minor ."']"; } +#line 2318 "smarty_internal_templateparser.php" #line 379 "smarty_internal_templateparser.y" - function yy_r93(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } -#line 2333 "smarty_internal_templateparser.php" -#line 381 "smarty_internal_templateparser.y" - function yy_r94(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } -#line 2336 "smarty_internal_templateparser.php" + function yy_r91(){ $this->_retvalue = "[".$this->yystack[$this->yyidx + 0]->minor."]"; } +#line 2321 "smarty_internal_templateparser.php" +#line 380 "smarty_internal_templateparser.y" + function yy_r92(){ $this->_retvalue = "[". $this->yystack[$this->yyidx + -1]->minor ."]"; } +#line 2324 "smarty_internal_templateparser.php" #line 382 "smarty_internal_templateparser.y" - function yy_r95(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } + function yy_r93(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\'][\'index\']').']'; } +#line 2327 "smarty_internal_templateparser.php" +#line 383 "smarty_internal_templateparser.y" + function yy_r94(){ $this->_retvalue = '['.$this->compiler->compileTag('special_smarty_variable','[\'section\'][\''.$this->yystack[$this->yyidx + -3]->minor.'\'][\''.$this->yystack[$this->yyidx + -1]->minor.'\']').']'; } +#line 2330 "smarty_internal_templateparser.php" +#line 387 "smarty_internal_templateparser.y" + function yy_r96(){$this->_retvalue = ''; } +#line 2333 "smarty_internal_templateparser.php" +#line 395 "smarty_internal_templateparser.y" + function yy_r98(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2336 "smarty_internal_templateparser.php" +#line 397 "smarty_internal_templateparser.y" + function yy_r99(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } #line 2339 "smarty_internal_templateparser.php" -#line 386 "smarty_internal_templateparser.y" - function yy_r97(){$this->_retvalue = ''; } +#line 399 "smarty_internal_templateparser.y" + function yy_r100(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } #line 2342 "smarty_internal_templateparser.php" -#line 394 "smarty_internal_templateparser.y" - function yy_r99(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.'.'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2345 "smarty_internal_templateparser.php" -#line 396 "smarty_internal_templateparser.y" - function yy_r100(){$this->_retvalue = '\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2348 "smarty_internal_templateparser.php" -#line 398 "smarty_internal_templateparser.y" - function yy_r101(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2351 "smarty_internal_templateparser.php" -#line 403 "smarty_internal_templateparser.y" - function yy_r102(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { +#line 404 "smarty_internal_templateparser.y" + function yy_r101(){ if ($this->yystack[$this->yyidx + -1]->minor['var'] == '\'smarty\'') { $this->_retvalue = $this->compiler->compileTag('special_smarty_variable',$this->yystack[$this->yyidx + -1]->minor['index']).$this->yystack[$this->yyidx + 0]->minor;} else { $this->_retvalue = '$_smarty_tpl->getVariable('. $this->yystack[$this->yyidx + -1]->minor['var'] .')->value'.$this->yystack[$this->yyidx + -1]->minor['index'].$this->yystack[$this->yyidx + 0]->minor; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + -1]->minor['var'],"'"))->nocache;} } -#line 2355 "smarty_internal_templateparser.php" -#line 406 "smarty_internal_templateparser.y" - function yy_r103(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } -#line 2358 "smarty_internal_templateparser.php" -#line 408 "smarty_internal_templateparser.y" - function yy_r104(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2361 "smarty_internal_templateparser.php" -#line 410 "smarty_internal_templateparser.y" - function yy_r105(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2364 "smarty_internal_templateparser.php" +#line 2346 "smarty_internal_templateparser.php" +#line 407 "smarty_internal_templateparser.y" + function yy_r102(){$this->_retvalue = $this->yystack[$this->yyidx + 0]->minor; } +#line 2349 "smarty_internal_templateparser.php" +#line 409 "smarty_internal_templateparser.y" + function yy_r103(){$this->_retvalue = $this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2352 "smarty_internal_templateparser.php" #line 411 "smarty_internal_templateparser.y" - function yy_r106(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2367 "smarty_internal_templateparser.php" + function yy_r104(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2355 "smarty_internal_templateparser.php" #line 412 "smarty_internal_templateparser.y" - function yy_r107(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2370 "smarty_internal_templateparser.php" + function yy_r105(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2358 "smarty_internal_templateparser.php" #line 413 "smarty_internal_templateparser.y" - function yy_r108(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } -#line 2373 "smarty_internal_templateparser.php" -#line 415 "smarty_internal_templateparser.y" - function yy_r109(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2376 "smarty_internal_templateparser.php" -#line 421 "smarty_internal_templateparser.y" - function yy_r110(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { + function yy_r106(){ $this->_retvalue = '->{'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2361 "smarty_internal_templateparser.php" +#line 414 "smarty_internal_templateparser.y" + function yy_r107(){ $this->_retvalue = '->{\''.$this->yystack[$this->yyidx + -4]->minor.'\'.'.$this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + 0]->minor.'}'; } +#line 2364 "smarty_internal_templateparser.php" +#line 416 "smarty_internal_templateparser.y" + function yy_r108(){ $this->_retvalue = '->'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2367 "smarty_internal_templateparser.php" +#line 422 "smarty_internal_templateparser.y" + function yy_r109(){if (!$this->template->security || $this->smarty->security_handler->isTrustedPhpFunction($this->yystack[$this->yyidx + -3]->minor, $this->compiler)) { if ($this->yystack[$this->yyidx + -3]->minor == 'isset' || $this->yystack[$this->yyidx + -3]->minor == 'empty' || $this->yystack[$this->yyidx + -3]->minor == 'array' || is_callable($this->yystack[$this->yyidx + -3]->minor)) { $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } else { $this->compiler->trigger_template_error ("unknown function \"" . $this->yystack[$this->yyidx + -3]->minor . "\""); } } } +#line 2376 "smarty_internal_templateparser.php" +#line 433 "smarty_internal_templateparser.y" + function yy_r110(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } +#line 2379 "smarty_internal_templateparser.php" +#line 437 "smarty_internal_templateparser.y" + function yy_r111(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } +#line 2382 "smarty_internal_templateparser.php" +#line 441 "smarty_internal_templateparser.y" + function yy_r113(){ return; } #line 2385 "smarty_internal_templateparser.php" -#line 432 "smarty_internal_templateparser.y" - function yy_r111(){ $this->_retvalue = $this->yystack[$this->yyidx + -3]->minor . "(". $this->yystack[$this->yyidx + -1]->minor .")"; } -#line 2388 "smarty_internal_templateparser.php" -#line 436 "smarty_internal_templateparser.y" - function yy_r112(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.",".$this->yystack[$this->yyidx + 0]->minor; } -#line 2391 "smarty_internal_templateparser.php" -#line 440 "smarty_internal_templateparser.y" - function yy_r114(){ return; } -#line 2394 "smarty_internal_templateparser.php" -#line 445 "smarty_internal_templateparser.y" - function yy_r115(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } -#line 2397 "smarty_internal_templateparser.php" #line 446 "smarty_internal_templateparser.y" - function yy_r116(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } -#line 2400 "smarty_internal_templateparser.php" -#line 462 "smarty_internal_templateparser.y" - function yy_r119(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2403 "smarty_internal_templateparser.php" + function yy_r114(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'false'); } +#line 2388 "smarty_internal_templateparser.php" +#line 447 "smarty_internal_templateparser.y" + function yy_r115(){ $this->_retvalue = array($this->yystack[$this->yyidx + 0]->minor,'true'); } +#line 2391 "smarty_internal_templateparser.php" #line 463 "smarty_internal_templateparser.y" - function yy_r120(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } -#line 2406 "smarty_internal_templateparser.php" -#line 470 "smarty_internal_templateparser.y" - function yy_r122(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2409 "smarty_internal_templateparser.php" -#line 475 "smarty_internal_templateparser.y" - function yy_r124(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } -#line 2412 "smarty_internal_templateparser.php" -#line 477 "smarty_internal_templateparser.y" - function yy_r125(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } -#line 2415 "smarty_internal_templateparser.php" + function yy_r118(){$this->_retvalue = ','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2394 "smarty_internal_templateparser.php" +#line 464 "smarty_internal_templateparser.y" + function yy_r119(){$this->_retvalue = ',\''.$this->yystack[$this->yyidx + 0]->minor.'\''; } +#line 2397 "smarty_internal_templateparser.php" +#line 471 "smarty_internal_templateparser.y" + function yy_r121(){$this->_retvalue = '!'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2400 "smarty_internal_templateparser.php" +#line 476 "smarty_internal_templateparser.y" + function yy_r123(){$this->_retvalue =$this->yystack[$this->yyidx + 0]->minor; } +#line 2403 "smarty_internal_templateparser.php" #line 478 "smarty_internal_templateparser.y" - function yy_r126(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2418 "smarty_internal_templateparser.php" + function yy_r124(){$this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.$this->yystack[$this->yyidx + 0]->minor; } +#line 2406 "smarty_internal_templateparser.php" #line 479 "smarty_internal_templateparser.y" - function yy_r127(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2421 "smarty_internal_templateparser.php" -#line 481 "smarty_internal_templateparser.y" - function yy_r129(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2424 "smarty_internal_templateparser.php" + function yy_r125(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2409 "smarty_internal_templateparser.php" +#line 480 "smarty_internal_templateparser.y" + function yy_r126(){$this->_retvalue = 'in_array('.$this->yystack[$this->yyidx + -2]->minor.',(array)'.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2412 "smarty_internal_templateparser.php" #line 482 "smarty_internal_templateparser.y" - function yy_r130(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2427 "smarty_internal_templateparser.php" + function yy_r128(){$this->_retvalue = '!('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2415 "smarty_internal_templateparser.php" #line 483 "smarty_internal_templateparser.y" - function yy_r131(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2430 "smarty_internal_templateparser.php" + function yy_r129(){$this->_retvalue = '('.$this->yystack[$this->yyidx + -2]->minor.' % '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2418 "smarty_internal_templateparser.php" #line 484 "smarty_internal_templateparser.y" - function yy_r132(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2433 "smarty_internal_templateparser.php" + function yy_r130(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2421 "smarty_internal_templateparser.php" #line 485 "smarty_internal_templateparser.y" - function yy_r133(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2436 "smarty_internal_templateparser.php" + function yy_r131(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2424 "smarty_internal_templateparser.php" #line 486 "smarty_internal_templateparser.y" - function yy_r134(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } -#line 2439 "smarty_internal_templateparser.php" -#line 492 "smarty_internal_templateparser.y" - function yy_r140(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } -#line 2442 "smarty_internal_templateparser.php" -#line 494 "smarty_internal_templateparser.y" - function yy_r141(){$this->_retvalue = '=='; } -#line 2445 "smarty_internal_templateparser.php" + function yy_r132(){$this->_retvalue = '!(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2427 "smarty_internal_templateparser.php" +#line 487 "smarty_internal_templateparser.y" + function yy_r133(){$this->_retvalue = '(1 & '.$this->yystack[$this->yyidx + -2]->minor.' / '.$this->yystack[$this->yyidx + 0]->minor.')'; } +#line 2430 "smarty_internal_templateparser.php" +#line 493 "smarty_internal_templateparser.y" + function yy_r139(){$this->prefix_number++; $this->compiler->prefix_code[] = 'prefix_number.'='.$this->yystack[$this->yyidx + 0]->minor.';?>'; $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.$this->yystack[$this->yyidx + -1]->minor.'$_tmp'.$this->prefix_number; } +#line 2433 "smarty_internal_templateparser.php" #line 495 "smarty_internal_templateparser.y" - function yy_r142(){$this->_retvalue = '!='; } -#line 2448 "smarty_internal_templateparser.php" + function yy_r140(){$this->_retvalue = '=='; } +#line 2436 "smarty_internal_templateparser.php" #line 496 "smarty_internal_templateparser.y" - function yy_r143(){$this->_retvalue = '>'; } -#line 2451 "smarty_internal_templateparser.php" + function yy_r141(){$this->_retvalue = '!='; } +#line 2439 "smarty_internal_templateparser.php" #line 497 "smarty_internal_templateparser.y" - function yy_r144(){$this->_retvalue = '<'; } -#line 2454 "smarty_internal_templateparser.php" + function yy_r142(){$this->_retvalue = '>'; } +#line 2442 "smarty_internal_templateparser.php" #line 498 "smarty_internal_templateparser.y" - function yy_r145(){$this->_retvalue = '>='; } -#line 2457 "smarty_internal_templateparser.php" + function yy_r143(){$this->_retvalue = '<'; } +#line 2445 "smarty_internal_templateparser.php" #line 499 "smarty_internal_templateparser.y" - function yy_r146(){$this->_retvalue = '<='; } -#line 2460 "smarty_internal_templateparser.php" + function yy_r144(){$this->_retvalue = '>='; } +#line 2448 "smarty_internal_templateparser.php" #line 500 "smarty_internal_templateparser.y" - function yy_r147(){$this->_retvalue = '==='; } -#line 2463 "smarty_internal_templateparser.php" + function yy_r145(){$this->_retvalue = '<='; } +#line 2451 "smarty_internal_templateparser.php" #line 501 "smarty_internal_templateparser.y" - function yy_r148(){$this->_retvalue = '!=='; } -#line 2466 "smarty_internal_templateparser.php" + function yy_r146(){$this->_retvalue = '==='; } +#line 2454 "smarty_internal_templateparser.php" #line 502 "smarty_internal_templateparser.y" - function yy_r149(){$this->_retvalue = '%'; } -#line 2469 "smarty_internal_templateparser.php" -#line 504 "smarty_internal_templateparser.y" - function yy_r150(){$this->_retvalue = '&&'; } -#line 2472 "smarty_internal_templateparser.php" + function yy_r147(){$this->_retvalue = '!=='; } +#line 2457 "smarty_internal_templateparser.php" +#line 503 "smarty_internal_templateparser.y" + function yy_r148(){$this->_retvalue = '%'; } +#line 2460 "smarty_internal_templateparser.php" #line 505 "smarty_internal_templateparser.y" - function yy_r151(){$this->_retvalue = '||'; } -#line 2475 "smarty_internal_templateparser.php" + function yy_r149(){$this->_retvalue = '&&'; } +#line 2463 "smarty_internal_templateparser.php" #line 506 "smarty_internal_templateparser.y" - function yy_r152(){$this->_retvalue = ' XOR '; } -#line 2478 "smarty_internal_templateparser.php" -#line 511 "smarty_internal_templateparser.y" - function yy_r153(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } -#line 2481 "smarty_internal_templateparser.php" -#line 513 "smarty_internal_templateparser.y" - function yy_r155(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } -#line 2484 "smarty_internal_templateparser.php" + function yy_r150(){$this->_retvalue = '||'; } +#line 2466 "smarty_internal_templateparser.php" +#line 507 "smarty_internal_templateparser.y" + function yy_r151(){$this->_retvalue = ' XOR '; } +#line 2469 "smarty_internal_templateparser.php" +#line 512 "smarty_internal_templateparser.y" + function yy_r152(){ $this->_retvalue = 'array('.$this->yystack[$this->yyidx + -1]->minor.')'; } +#line 2472 "smarty_internal_templateparser.php" #line 514 "smarty_internal_templateparser.y" - function yy_r156(){ return; } -#line 2487 "smarty_internal_templateparser.php" + function yy_r154(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.','.$this->yystack[$this->yyidx + 0]->minor; } +#line 2475 "smarty_internal_templateparser.php" #line 515 "smarty_internal_templateparser.y" - function yy_r157(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2490 "smarty_internal_templateparser.php" + function yy_r155(){ return; } +#line 2478 "smarty_internal_templateparser.php" #line 516 "smarty_internal_templateparser.y" - function yy_r158(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2493 "smarty_internal_templateparser.php" -#line 525 "smarty_internal_templateparser.y" - function yy_r162(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } -#line 2496 "smarty_internal_templateparser.php" + function yy_r156(){ $this->_retvalue = $this->yystack[$this->yyidx + -2]->minor.'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2481 "smarty_internal_templateparser.php" +#line 517 "smarty_internal_templateparser.y" + function yy_r157(){ $this->_retvalue = '\''.$this->yystack[$this->yyidx + -2]->minor.'\'=>'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2484 "smarty_internal_templateparser.php" #line 526 "smarty_internal_templateparser.y" - function yy_r163(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } -#line 2499 "smarty_internal_templateparser.php" + function yy_r161(){$this->_retvalue = "`".$this->yystack[$this->yyidx + -1]->minor."`"; } +#line 2487 "smarty_internal_templateparser.php" #line 527 "smarty_internal_templateparser.y" - function yy_r164(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } -#line 2502 "smarty_internal_templateparser.php" + function yy_r162(){$this->_retvalue = '".'.$this->yystack[$this->yyidx + -1]->minor.'."'; $this->compiler->has_variable_string = true; } +#line 2490 "smarty_internal_templateparser.php" #line 528 "smarty_internal_templateparser.y" - function yy_r165(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } -#line 2505 "smarty_internal_templateparser.php" + function yy_r163(){$this->_retvalue = '".'.'$_smarty_tpl->getVariable(\''. $this->yystack[$this->yyidx + 0]->minor .'\')->value'.'."'; $this->compiler->tag_nocache=$this->compiler->tag_nocache|$this->template->getVariable(trim($this->yystack[$this->yyidx + 0]->minor,"'"))->nocache; $this->compiler->has_variable_string = true; } +#line 2493 "smarty_internal_templateparser.php" #line 529 "smarty_internal_templateparser.y" - function yy_r166(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } -#line 2508 "smarty_internal_templateparser.php" + function yy_r164(){ $this->_retvalue = '".('.$this->yystack[$this->yyidx + -1]->minor.')."'; $this->compiler->has_variable_string = true; } +#line 2496 "smarty_internal_templateparser.php" #line 530 "smarty_internal_templateparser.y" - function yy_r167(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2511 "smarty_internal_templateparser.php" -#line 532 "smarty_internal_templateparser.y" - function yy_r169(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } -#line 2514 "smarty_internal_templateparser.php" + function yy_r165(){ $this->prefix_number++; $this->compiler->prefix_code[] = ''.$this->yystack[$this->yyidx + -1]->minor.'prefix_number.'=ob_get_clean();?>'; $this->_retvalue = '".$_tmp'.$this->prefix_number.'."'; $this->compiler->has_variable_string = true; } +#line 2499 "smarty_internal_templateparser.php" +#line 531 "smarty_internal_templateparser.y" + function yy_r166(){$this->_retvalue = '$'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2502 "smarty_internal_templateparser.php" +#line 533 "smarty_internal_templateparser.y" + function yy_r168(){$this->_retvalue = '`'.$this->yystack[$this->yyidx + 0]->minor; } +#line 2505 "smarty_internal_templateparser.php" /** * placeholder for the left hand side in a reduce operation. @@ -2623,7 +2614,7 @@ static public $yy_action = array( $this->internalError = true; $this->yymajor = $yymajor; $this->compiler->trigger_template_error(); -#line 2632 "smarty_internal_templateparser.php" +#line 2623 "smarty_internal_templateparser.php" } /** @@ -2647,7 +2638,7 @@ static public $yy_action = array( $this->internalError = false; $this->retvalue = $this->_retvalue; //echo $this->retvalue."\n\n"; -#line 2657 "smarty_internal_templateparser.php" +#line 2648 "smarty_internal_templateparser.php" } /**