Changeset 836


Ignore:
Timestamp:
Aug 25, 2015, 10:52:51 PM (9 years ago)
Author:
chronos
Message:
  • Modified: Allow to disable google translate as this service is not usable for offline development.
  • Modified: Translated rest of ReadMe file.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Translation/Form.php

    r826 r836  
    237237              $Output .= '</form>';
    238238
     239              if(isset($this->System->Config['Web']['EnableGoogleTranslate']) and
     240                $this->System->Config['Web']['EnableGoogleTranslate'])
     241              {
    239242              $Output .= '<br/><table class="BaseTable">'.
    240243              '<tr><th>Google překladač:</th><th>Nepřeložené</th><th>Přeložené</th>';
     
    247250
    248251              $Output .= '</table>';
     252              }
    249253            }
    250254        }
  • trunk/ReadMe.txt

    r599 r836  
    13132) Base configuration
    1414
    15 Při zprovoznění webu je nutné zkopírovat soubor config.sample.php na
    16 config.php ve složce includes a upravit obsažená nastavení dle svých podmínek.
    17 
     15For initial web setup there is a necessary to copy config.sample.php file to
     16config.php inside directory includes and modify contained settings accrording
     17own needs.
    1818
    19193) Banners display
     
    52527) Background script for export
    5353
    54 Při startu systému je potřeba spustit skript Modules/Export/ProcessTask.php
    55 pro zpracování delé trvajících úloh exportů.
    56 Proces musí být spuštěn pod uživatelem stejným jako web server (apache),
    57 kvůli správnému nastavování oprávnění při vytváření souborů ve složce
    58 tmp a kvůli bezpečnosti.
     54At system start there is a need to start script Modules/Export/ProcessTask.php
     55for processing long lasting export tasks.
     56Process have to be executed under same user as web server (apache),
     57because of correct permission setting during file creation in directory
     58tmp and because of security.
    5959
    6060
    61618) AoWoW download
    6262
    63 Stáhněte aowow z repozitáře http://wowpreklad.zdechov.net/svn/wowpreklad/aowow
    64 jako podsložku do složky wowprekladu. Postupujte podle pokynů v souboru
    65 ReadMe.txt ve stažené složce.
     63Download AoWoW from repository http://wowpreklad.zdechov.net/svn/wowpreklad/aowow
     64as subdirectory to directory of wowpreklad. Process according instructions in
     65file ReadMe.txt at the same directory.
    6666
    6767
  • trunk/admin/install.php

    r816 r836  
    132132    'Advertisement' => '',
    133133    'Locale' => 'cs',
     134    'EnableGoogleTranslate' => false,
    134135  ),
    135136  'ForbiddedUserNames' => array('addon', 'admin', 'administrator'),
     
    146147{
    147148  $Output = '<h3>Přihlášení k instalaci</h3>'.
    148       '<form action="" method="post">'.
    149       '<table>'.
    150       '<tr><td>Systémové heslo:</td><td> <input type="password" name="SystemPassword" value=""/></td></tr>'.
    151       '</table>'.
    152       '<input type="submit" name="login" value="Přihlásit"/>'.
    153       '</form>';
     149    '<form action="" method="post">'.
     150    '<table>'.
     151    '<tr><td>Systémové heslo:</td><td> <input type="password" name="SystemPassword" value=""/></td></tr>'.
     152    '</table>'.
     153    '<input type="submit" name="login" value="Přihlásit"/>'.
     154    '</form>';
    154155  return($Output);
    155156}
  • trunk/includes/Version.php

    r835 r836  
    66// and system will need database update.
    77
    8 $Revision = 835; // Subversion revision
     8$Revision = 836; // Subversion revision
    99$DatabaseRevision = 811; // Database structure revision
    10 $ReleaseTime = '2015-08-24';
     10$ReleaseTime = '2015-08-25';
  • trunk/includes/global.php

    r831 r836  
    188188  $data = str_replace('$b $b', '$b$b', $data);
    189189  $data = str_replace('| ', '|', $data);
     190
     191  $data = strip_tags($data);
    190192
    191193  return($data);
  • trunk/includes/system.php

    r817 r836  
    489489        }// else $line = '['.$line.']';
    490490        //if($line != '') echo(htmlspecialchars(str_repeat(' ',$nn).$line."\n"));
     491        if($nn < 0) $nn = 0;
    491492        if($line != '') $out .= (str_repeat(' ', $nn).$line."\n");
    492493        $s = substr($s, $end + 1, strlen($s));
Note: See TracChangeset for help on using the changeset viewer.