X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fexpression-functions.php;h=7b90cbc03b274ae76a9f43c90e1de714b4a8a13c;hb=refs%2Fheads%2Fserver-0.2.1-FINAL%2Fshipsimu-org;hp=4e78a9bd13e464177dc30b04dcd7227634c249eb;hpb=ca256746fe0757a23df4064824c8fe2087ad5634;p=mailer.git diff --git a/inc/expression-functions.php b/inc/expression-functions.php index 4e78a9bd13..7b90cbc03b 100644 --- a/inc/expression-functions.php +++ b/inc/expression-functions.php @@ -10,13 +10,8 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Expression-Callback-Funktionen * * -------------------------------------------------------------------- * - * $Revision:: $ * - * $Date:: $ * - * $Tag:: 0.2.1-FINAL $ * - * $Author:: $ * - * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -157,7 +152,7 @@ function doExpressionExt ($data) { } // END - if // Generate replacer - $replacer = sprintf("&ext=%s&ver=%s&rev={?CURRENT_REPOSITORY_REVISION?}", $data['matches'][4][$data['key']], $replacer); + $replacer = sprintf('&ext=%s&ver=%s', $data['matches'][4][$data['key']], $replacer); // Replace it and insert parameter for GET request $code = replaceExpressionCode($data, $replacer); @@ -327,9 +322,6 @@ function doExpressionMath ($data) { // Replace the code $code = replaceExpressionCode($data, $replacer); - // Load include once - loadIncludeOnce('inc/math-functions.php'); - // Return the (maybe) replaced code return $code; } @@ -444,7 +436,7 @@ function doExpressionForm ($data) { if ($value == 'formmethodpost') { // Use it $data['__form_method'] = 'post'; - } elseif (($value == 'formmethodpost') && (!isSpider()) && (!isSessionValid())) { + } elseif (($value == 'formmethodpost') && (!isSpider()) && (!isValidSession())) { // Then expand 'value' with session id if (strpos($data['value'], '?') !== FALSE) { // '?' is set @@ -524,7 +516,7 @@ function doExpressionFormClose ($data) { // Expression call-back to handle jquery inclusion function doExpressionJquery ($data) { // Default is compressed - $jquery = 'jquery'; + $scriptName = 'jquery'; $data['output_mode'] = ''; // Is there JS-mode? @@ -536,20 +528,23 @@ function doExpressionJquery ($data) { // Is there a value? if ($data['callback'] == 'js') { // Then load special library - $jquery .= '-' . $data['value']; + $scriptName .= '-' . $data['value']; } // END - if // Is debug mode enabled? - if ((isGetRequestElementSet('jquery')) || (isSessionVariableSet('jquery'))) { - // Then use uncompressed - $jquery .= '.uncompressed'; - - // Remember it in session + if ((!isGetRequestElementSet('jquery')) && (!isSessionVariableSet('jquery'))) { + // Productive systems want minimized version + $scriptName .= '.min'; + } else { + // Debug version is uncompressed, remember it in session setSession('jquery', '1'); - } // END - if + } + + // Complete script name + $scriptName = sprintf('js/jquery/%s.js', $scriptName); // Add {%url%} around it - $replacer = '{%url' . $data['output_mode'] . '=js/' . $jquery . '.js?dummy=1%}'; + $replacer = sprintf('{%%url%s=%s?dummy=1%%}', $data['output_mode'], $scriptName); // Replace the code $code = replaceExpressionCode($data, $replacer); @@ -557,6 +552,3 @@ function doExpressionJquery ($data) { // Return the (maybe) replaced code return $code; } - -// [EOF] -?>