]> git.mxchange.org Git - mailer.git/commitdiff
Even more removals of deprecated revision-stuff (was used in SVN to show updates).
authorRoland Haeder <roland@mxchange.org>
Thu, 17 Apr 2014 21:32:22 +0000 (23:32 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 17 Apr 2014 21:32:22 +0000 (23:32 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/loader/load-revision.php
inc/modules/admin/what-updates.php
inc/revision-functions.php
inc/versions.php
inc/wrapper-functions.php
templates/de/html/admin/admin_update_download.tpl
templates/de/html/copyright.tpl
templates/de/html/copyright_backlink.tpl
templates/de/html/mediadata.tpl

index 9292bb922f833c2e3477c91fe39a8d4b663eef59..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,68 +1,3 @@
 <?php
-/************************************************************************
- * Mailer v0.2.1-FINAL                                Start: 09/09/2008 *
- * ===================                          Last change: 09/09/2008 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : load-revision.php                                *
- * -------------------------------------------------------------------- *
- * Short description : Load more cache files                            *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
- * For more information visit: http://mxchange.org                      *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY')) {
-       die();
-} // END - if
-
-// Next cached table is the revision...
-if ($GLOBALS['cache_instance']->loadCacheFile('revision')) {
-       // Load revision from cache
-       $GLOBALS['cache_array']['revision'] = $GLOBALS['cache_instance']->getArrayFromCache();
-} elseif (((isHtmlOutputMode())) || (isAjaxOutputMode()) || (isRawOutputMode())) {
-       // Create cache file here
-       $GLOBALS['cache_instance']->init();
-
-       // add the new RevInfos in and saves it to the cache
-       $GLOBALS['cache_instance']->addRow(getArrayFromRepositoryData());
-
-       // Close the cache
-       $GLOBALS['cache_instance']->finalize();
-
-       // Generate FQFN for old revision file
-       $FQFN = sprintf('%s/.revision', getCachePath());
-
-       // Is it there?
-       if (isFileReadable($FQFN)) {
-               // Then remove it
-               removeFile($FQFN);
-       } // END - if
-}
-
-// [EOF]
+// @DEPRECATED
 ?>
index 41fc659241221a66c3d834c59da41facc2caabaa..e7d8f5ce88358d01ec41db631dbed79a867644d3 100644 (file)
@@ -62,7 +62,6 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
                $ONLINE = array(
                        'version'  => trim(str_replace(PHP_EOL, '', $response[0])),
                        'changed'  => trim(str_replace(PHP_EOL, '', $response[1])),
-                       'revision' => trim(str_replace(PHP_EOL, '', $response[2])),
                        'code'     => '200 OK'
                );
        } else {
@@ -75,15 +74,12 @@ if (empty($response[0]) && empty($response[1]) && empty($response[2]) && empty($
 if (empty($ONLINE['version'])) {
        // Disconnected?
        displayErrorMessage('{--ADMIN_CANNOT_CHECK_VERSION--} (' . $ONLINE['code'] . ')');
-} elseif (($ONLINE['version'] != getFullVersion()) || ($ONLINE['revision'] > getCurrentRepositoryRevision())) {
+} elseif ($ONLINE['version'] != getFullVersion()) {
        // New full-version available (all previous released patches are included in this version!)
        $ONLINE['changed'] = generateDateTime($ONLINE['changed'], 2);
 
        // Load template
        loadTemplate('admin_update_download', FALSE, $ONLINE);
-} elseif ($ONLINE['revision'] < getCurrentRepositoryRevision()) {
-       // Installed revision is newer than on server
-       displayMessage('{--ADMIN_LOCAL_REVISION_IS_NEWER_THAN_UPDATE--}');
 } else {
        // You have the latest version!
        displayMessage('{--ADMIN_NO_UPDATES_AVAILABLE--}');
index 6e8da9535bd80840840ddcb637511ca6da02c1d4..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,264 +1,3 @@
 <?php
-/************************************************************************
- * Mailer v0.2.1-FINAL                                Start: 12/15/2009 *
- * ===================                          Last change: 12/15/2009 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : revision-functions.php                           *
- * -------------------------------------------------------------------- *
- * Short description : Revison-info related functions                   *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Revsions-Info relevante Funktionen               *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
- * For more information visit: http://mxchange.org                      *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY')) {
-       die();
-} // END - if
-
-// Initializes repository data
-function initRepositoryData () {
-       // Default data values or array indexes if numerical
-       $GLOBALS['default_repository_data'] = array(
-               // Main author of this script
-               'Author'   => 'quix0r',
-               // No default value for current file name
-               'File'     => 11,
-               // No default value for revision number
-               'Revision' => 10,
-               // No default value for date
-               'Date'     => 9,
-               // Default branch
-               'Tag'      => 8
-       );
-
-       // Add Revision, Date, Tag and Author
-       $GLOBALS['repository_search_for'] = array(
-               'File',
-               'Revision',
-               'Date',
-               'Tag',
-               'Author'
-       );
-}
-
-// "Getter" for revision/version data
-function getRepositoryData ($type = 'Revision') {
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret[' . $type . '] - ENTERED!');
-       // Default is an invalid value to find bugs... :-)
-       $ret = 'INVALID';
-
-       // By default nothing is new... ;-)
-       $new = FALSE;
-
-       // Is the cache entry there?
-       if (isset($GLOBALS['cache_array']['revision'][$type][0])) {
-               // Found so increase cache hit
-               incrementStatsEntry('cache_hits');
-
-               // Return it
-               $ret = $GLOBALS['cache_array']['revision'][$type][0];
-               //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret[' . $type . ']=' . $ret);
-       } else {
-               // FQFN of revision file
-               $FQFN = sprintf('%s/.revision', getCachePath());
-
-               // Check if 'check_revision_data' is setted (switch for manually rewrite the .revision-File)
-               if ((isGetRequestElementSet('check_revision_data')) && (getRequestElement('check_revision_data') == 'yes')) {
-                       // Forced rebuild of .revision file
-                       $new = TRUE;
-               } else {
-                       // Check for revision file
-                       if (!isFileReadable($FQFN)) {
-                               // Not found, so we need to create it
-                               $new = TRUE;
-                       } else {
-                               // Revision file found
-                               $ins_vers = explode(PHP_EOL, readFromFile($FQFN));
-
-                               // Get array for mapping information
-                               $mapper = array_flip($GLOBALS['repository_search_for']);
-                               //* DEBUG: */ debugOutput('<pre>mapper='.print_r($mapper, TRUE).'</pre>ins_vers=<pre>'.print_r($ins_vers, TRUE).'</pre>');
-
-                               // Is the content valid?
-                               if ((!is_array($ins_vers)) || (count($ins_vers) <= 0) || (!isset($ins_vers[$mapper[$type]])) || (trim($ins_vers[$mapper[$type]]) == '') || ($ins_vers[0]) == 'new') {
-                                       // File needs update!
-                                       $new = TRUE;
-                               } else {
-                                       // Generate fake cache entry
-                                       foreach ($mapper as $map => $idx) {
-                                               $GLOBALS['cache_array']['revision'][$map][0] = $ins_vers[$idx];
-                                       } // END - foreach
-
-                                       // Return found value
-                                       $ret = getRepositoryData($type);
-                                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret[' . $type . ']=' . $ret);
-                               }
-                       }
-               }
-
-               // Has it been updated?
-               if ($new === TRUE)  {
-                       // Write it
-                       writeToFile($FQFN, implode(PHP_EOL, getArrayFromRepositoryData()));
-
-                       // ... and call recursive
-                       $ret = getRepositoryData($type);
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret[' . $type . ']=' . $ret);
-               } // END - if
-       }
-
-       // Return the value
-       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'ret[' . $type . ']=' . $ret . ' - EXIT!');
-       return $ret;
-}
-
-// Extracts requested revision info from given file data
-function extractRevisionInfoFromData ($fileData, $search) {
-       // Default is to return empty string
-       $ret = '';
-
-       // Searches for "$search-tag:VALUE$" or "$search-tag::VALUE$"(the stylish keywordversion ;-)) in the lates modified file
-       $GLOBALS['revision_res'] += preg_match('@\$' . $search . '(:|::) (.*) \$@U', $fileData, $t);
-
-       // Make sure only valid and trimmed entries are used
-       if (isset($t[2])) {
-               $ret = trim($t[2]);
-       } // END - if
-
-       // Return the result
-       return $ret;
-}
-
-// Extracts requested revison info for given file name by reading it's content
-// and parsing it with extractRevisionInfoFromData().
-function extractRevisionInfoFromFile ($FQFN, $search) {
-       // Read the file
-       $fileData = readFromFile($FQFN);
-
-       // Call the extract function and return the result
-       return extractRevisionInfoFromData($fileData, $search);
-}
-
-// Gets an array back for current repository data.
-// @TODO This function does also set and get in 'cache_array'
-function getArrayFromRepositoryData () {
-       // Init array
-       $GLOBALS['cache_array']['revision'] = array();
-
-       // Init variables
-       $next_dir = '';
-
-       // Directory to start with search
-       $last_changed = array(
-               'path_name' => '',
-               'time'      => 0
-       );
-
-       // Init return array
-       $akt_vers = array();
-
-       // Init value for counting the founded keywords
-       $GLOBALS['revision_res'] = '0';
-
-       // Searches all Files and there date of the last modifikation and puts the newest File in $last_changed.
-       searchDirsRecursive($next_dir, $last_changed, 'Revision');
-
-       // Get file
-       $last_file = readFromFile($last_changed['path_name']);
-
-       // Save the last-changed filename for debugging
-       $GLOBALS['cache_array']['revision']['File'][0] = $last_changed['path_name'];
-
-       // This foreach loops the $searchFor-Tags (array('Revision', 'Date', 'Tag', 'Author') --> could easaly extended in the future)
-       foreach ($GLOBALS['repository_search_for'] as $search) {
-               // This extracts the requested data $search from file data $last_file
-               if ($search != 'File') {
-                       // Skip 'File' because we have set it some lines above
-                       $GLOBALS['cache_array']['revision'][$search][0] = extractRevisionInfoFromData($last_file, $search);
-                       //* DEBUG: */ logDebugMessage(__FUNCTION__, __LINE__, 'search=' . $search . ',data=' . $GLOBALS['cache_array']['revision'][$search][0]);
-               } // END - if
-       } // END - foreach
-
-       // at least 3 keyword-Tags are needed for propper values
-       if ($GLOBALS['revision_res'] && $GLOBALS['revision_res'] >= 3
-       && isset($GLOBALS['cache_array']['revision']['Revision'][0]) && !empty($GLOBALS['cache_array']['revision']['Revision'][0])
-       && isset($GLOBALS['cache_array']['revision']['Date'][0]) && !empty($GLOBALS['cache_array']['revision']['Date'][0])
-       && isset($GLOBALS['cache_array']['revision']['Tag'][0]) && !empty($GLOBALS['cache_array']['revision']['Tag'][0])) {
-               // Prepare content witch need special treadment
-
-               // Prepare timestamp for date
-               preg_match('@(....)-(..)-(..) (..):(..):(..)@', $GLOBALS['cache_array']['revision']['Date'][0], $match_d);
-               $GLOBALS['cache_array']['revision']['Date'][0] = mktime($match_d[4], $match_d[5], $match_d[6], $match_d[2], $match_d[3], $match_d[1]);
-
-               // Add author to the Tag if the author is set and is not quix0r (lead coder)
-               if ((isset($GLOBALS['cache_array']['revision']['Author'][0])) && ($GLOBALS['cache_array']['revision']['Author'][0] != 'quix0r')) {
-                       $GLOBALS['cache_array']['revision']['Tag'][0] .= '-' . strtoupper($GLOBALS['cache_array']['revision']['Author'][0]);
-               } // END - if
-
-       } else {
-               // No valid Data from the last modificated file so read the Revision from the Server. Fallback-solution!! Should not be removed I think.
-               $version = sendHttpGetRequest('check-updates3.php');
-
-               // Invalid request reply?
-               if (!isset($version[11])) {
-                       // Cannot continue here
-                       reportBug(__FUNCTION__, __LINE__, 'Invalid response from check-updates3.php, count should be at least 11, is ' . count($version));
-               } // END - if
-
-               // Prepare content
-               // Only sets not setted or not proper values to the Online-Server-Fallback-Solution
-               foreach ($GLOBALS['repository_search_for'] as $entry) {
-                       // Is it not set or empty?
-                       if ((!isset($GLOBALS['cache_array']['revision'][$entry][0])) || (empty($GLOBALS['cache_array']['revision']['File'][0]))) {
-                               // Is default data entry nummerical?
-                               if (is_numeric($GLOBALS['default_repository_data'][$entry])) {
-                                       // Use entry from $version
-                                       $GLOBALS['cache_array']['revision'][$entry][0] = trim($version[$GLOBALS['default_repository_data'][$entry]]);
-                               } else {
-                                       // Non-numeric -> use it directly
-                                       $GLOBALS['cache_array']['revision'][$entry][0] = $GLOBALS['default_repository_data'][$entry];
-                               }
-                       } // END - if
-               } // END - if
-       }
-
-       // Temporary remove [0] from array
-       $array = $GLOBALS['cache_array']['revision'];
-       foreach ($array as $key => $value) {
-               if ((is_array($value)) && (isset($value[0]))) {
-                       unset($array[$key][0]);
-                       $array[$key] = $value[0];
-               } // END - if
-       } // END - if
-
-       // Return prepared array
-       return $array;
-}
-
-// [EOF]
+// @DEPRECATED
 ?>
index 0428116f934b262640407a63eb2cf5b4a1a1c596..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,51 +1,3 @@
 <?php
-/************************************************************************
- * Mailer v0.2.1-FINAL                                Start: 03/07/2009 *
- * ===================                          Last change: 03/07/2009 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : versions.php                                     *
- * -------------------------------------------------------------------- *
- * Short description : Version definitions                              *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Versionsdefinierungen                            *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
- * For more information visit: http://mxchange.org                      *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY')) {
-       die();
-} // END - if
-
-// Set full version string
-setConfigEntry('FULL_VERSION', getRepositoryData('Tag'));
-
-// Current SVN revision and date
-setConfigEntry('CURRENT_REPOSITORY_REVISION', getRepositoryData('Revision'));
-setConfigEntry('CURRENT_REPOSITORY_DATE'    , getRepositoryData('Date'));
-
-// [EOF]
+// @DEPRECATED
 ?>
index b315b3cb68f983d584eaede755498df46434deb6..9cc88986eb5139d470d09d8fa3e447a8d0f05b9f 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Wrapper-Funktionen                               *
  * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
@@ -1421,30 +1416,6 @@ function encodeEntities ($str) {
        return $str;
 }
 
-// "Getter" for date from patch_ctime
-function getDateFromRepository () {
-       // Is it cached?
-       if (!isset($GLOBALS[__FUNCTION__])) {
-               // Then set it
-               $GLOBALS[__FUNCTION__] = generateDateTime(getConfig('CURRENT_REPOSITORY_DATE'), '5');
-       } // END - if
-
-       // Return cache
-       return $GLOBALS[__FUNCTION__];
-}
-
-// "Getter" for date/time from patch_ctime
-function getDateTimeFromRepository () {
-       // Is it cached?
-       if (!isset($GLOBALS[__FUNCTION__])) {
-               // Then set it
-               $GLOBALS[__FUNCTION__] = generateDateTime(getConfig('CURRENT_REPOSITORY_DATE'), '2');
-       } // END - if
-
-       // Return cache
-       return $GLOBALS[__FUNCTION__];
-}
-
 // Getter for current year (default)
 function getYear ($timestamp = NULL) {
        // Is it cached?
@@ -1913,6 +1884,18 @@ function getTableType () {
        return $GLOBALS[__FUNCTION__];
 }
 
+// "Getter" for db_type
+function getDbType () {
+       // Is there cache?
+       if (!isset($GLOBALS[__FUNCTION__])) {
+               // Determine it
+               $GLOBALS[__FUNCTION__] = getConfig('_DB_TYPE');
+       } // END - if
+
+       // Return cache
+       return $GLOBALS[__FUNCTION__];
+}
+
 // "Getter" for salt_length
 function getSaltLength () {
        // Is there cache?
@@ -1961,18 +1944,6 @@ function getTitle () {
        return $GLOBALS[__FUNCTION__];
 }
 
-// "Getter" for curr_svn_revision
-function getCurrentRepositoryRevision () {
-       // Is there cache?
-       if (!isset($GLOBALS[__FUNCTION__])) {
-               // Determine it
-               $GLOBALS[__FUNCTION__] = getConfig('CURRENT_REPOSITORY_REVISION');
-       } // END - if
-
-       // Return cache
-       return $GLOBALS[__FUNCTION__];
-}
-
 // "Getter" for server_url
 function getServerUrl () {
        // Is there cache?
@@ -3596,5 +3567,14 @@ function getGenericHashFileName () {
        return sprintf('%s%s.%s%s', getPath(), getCachePath(), getFileHash(), getCacheExtension());
 }
 
+// "Compiles" the given value and sets it in given key
+function setSessionCompiled ($key, $value) {
+       // "Compile" the value
+       $value = doFinalCompilation(compileRawCode($value));
+
+       // And set it
+       return setSession($key, $value);
+}
+
 // [EOF]
 ?>
index d9baa6f477988ad1dce7ce8c62f22efafdf3655d..e03193280ad5eeec0b6b6cfcf23c085f6b59f7c7 100644 (file)
@@ -7,12 +7,12 @@
 
 <div style="clear:both">
        <div style="float:left;padding:5px">{--ADMIN_YOUR_VERSION_IS--}:</div>
-       <div style="float:right;padding:5px"><strong>v{?FULL_VERSION?} R{?CURRENT_REPOSITORY_REVISION?}</strong></div>
+       <div style="float:right;padding:5px"><strong>v{?FULL_VERSION?}</strong></div>
 </div>
 
 <div style="clear:both">
        <div style="float:left;padding:5px">{--ADMIN_ONLINE_VERSION_IS--}:</div>
-       <div style="float:right;padding:5px"><strong>v$content[version] R$content[revision]</strong></div>
+       <div style="float:right;padding:5px"><strong>v$content[version]</strong></div>
 </div>
 
 <div style="clear:both">
index 89c86e42d00a3de4d521c5e0e311c21934dfc76b..1ca47ad1821cb7f1e95c55c3ec9d4e489e59f95d 100644 (file)
@@ -2,7 +2,7 @@
 <ul class="copyright_box">
 <li class="copyright_lines"><span class="copyright_lines">
        {?TITLE?}
-       v{?FULL_VERSION?} R{?CURRENT_REPOSITORY_REVISION?}<br />
+       v{?FULL_VERSION?}<br />
        {?COPY?}
 </span></li>
 
index d2deb35301c94adf27324424d88d50b23768f358..8ba458108be3b6a35a5badfd176b41613e40bd5f 100644 (file)
@@ -2,7 +2,7 @@
 <ul class="copyright_box">
 <li class="copyright_lines"><span class="copyright_lines">
        [<a href="{?SERVER_URL?}/" title="{?TITLE?}" target="_blank" rel="external">{?TITLE?}</a>]
-       v{?FULL_VERSION?} R{?CURRENT_REPOSITORY_REVISION?}<br />
+       v{?FULL_VERSION?}<br />
        {?COPY?}
 </span></li>
 
index ef0b8d2c19cc42bfd46c758a55550afd755d8ea9..8e311f763090a0545b1fdf7a359ccd9298c1c60f 100644 (file)
                        {--MEDIA_DATA_GENERAL--}
                </td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USER_MT_START--}:</td>
                <td class="bottom media_right">$content[mt_start]</td>
        </tr>
+
        <tr>
                <td class="bottom medium" colspan="2" align="center">
                        $content[projected]
                </td>
        </tr>
+
        <tr>
                <td class="table_header bottom" colspan="2" align="center">{--MEDIA_DATA_MEMBERS--}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_TOTAL--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[user_count]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_CONFIRMED--}:</td>
                <td class="bottom media_right">{%pipe,getTotalConfirmedUser,translateComma%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_UNCONFIRMED--}:</td>
                <td class="bottom media_right">{%pipe,getTotalUnconfirmedUser,translateComma%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_LOCKED--}:</td>
                <td class="bottom media_right">{%pipe,getTotalLockedUser,translateComma%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_MAX_MAILS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[user_max_mails]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_REC_PER_DAY--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[user_max_rec]%}</td>
        </tr>
+
        $content[out_user]
+
        <tr>
                <td class="table_header bottom" colspan="2" align="center">
                        {--MEDIA_DATA_MAIL--}
                </td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_STATS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[user_stats]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_MAX_MAILS_PER_DAY--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[max]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_MAX_REC--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[rec]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_SENT_MAILS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[sent]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--USERS_LINKS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[user_links]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--CLICK_RATE--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[click_rate]%}&#37;</td>
        </tr>
+
        <tr>
                <td class="table_header bottom" colspan="2" align="center">{--MEDIA_DATA_POINTS--}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--JACKPOT_POINTS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[jackpot]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--TOTAL_POINTS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[total_points]%}</td>
        </tr>
+
        $content[out_points]
+
        <tr>
                <td class="table_header bottom" colspan="2" align="center">{--MEDIA_DATA_REFBANNER--}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--TOTAL_REFERRAL_BANNER--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[ref_total]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--TOTAL_REFERRAL_VIEWS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[ref_views]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--TOTAL_REFERRAL_CLICKS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[ref_clicks]%}</td>
        </tr>
+
        <tr>
                <td class="table_header bottom" colspan="2" align="center">{--MEDIA_DATA_MISC--}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--TOTAL_REFCLICKS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[total_refclicks]%}</td>
        </tr>
+
        <tr>
                <td class="bottom media_left" align="right">{--TOTAL_LOGINS--}:</td>
                <td class="bottom media_right">{%pipe,translateComma=$content[total_logins]%}</td>
        </tr>
+
        $content[out_extra]
+
        $content[out_special]
+
        <tr>
                <td class="table_header bottom" colspan="2" align="center">{--MEDIA_DATA_SCRIPT--}</td>
        </tr>
+
        <tr>
                <td class="bottom medium" align="center" colspan="2">
                        <div>{--ENGINE_SOFTWARE--}/{--ENGINE_VERSION--}:</div>
                        <div><strong>{?TITLE?} v{?FULL_VERSION?}</strong></div>
                </td>
        </tr>
-       <tr>
-               <td class="bottom media_left" align="right">{--ENGINE_REVISION--}:</td>
-               <td class="bottom media_right">{?CURRENT_REPOSITORY_REVISION?}</td>
-       </tr>
-       <tr>
-               <td class="bottom media_left" align="right">{--ENGINE_REVISION_CREATED--}:</td>
-               <td class="bottom media_right">{%pipe,getDateTimeFromRepository%}</td>
-       </tr>
+
        <tr>
                <td class="table_header" colspan="2">
                        <div class="tiny">