Changeset 836
- Timestamp:
- Aug 25, 2015, 10:52:51 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Translation/Form.php
r826 r836 237 237 $Output .= '</form>'; 238 238 239 if(isset($this->System->Config['Web']['EnableGoogleTranslate']) and 240 $this->System->Config['Web']['EnableGoogleTranslate']) 241 { 239 242 $Output .= '<br/><table class="BaseTable">'. 240 243 '<tr><th>Google překladač:</th><th>Nepřeložené</th><th>Přeložené</th>'; … … 247 250 248 251 $Output .= '</table>'; 252 } 249 253 } 250 254 } -
trunk/ReadMe.txt
r599 r836 13 13 2) Base configuration 14 14 15 Při zprovoznění webu je nutné zkopírovat soubor config.sample.php na16 config.php ve složce includes a upravit obsažená nastavení dle svých podmínek.17 15 For initial web setup there is a necessary to copy config.sample.php file to 16 config.php inside directory includes and modify contained settings accrording 17 own needs. 18 18 19 19 3) Banners display … … 52 52 7) Background script for export 53 53 54 Při startu systému je potřeba spustit skript Modules/Export/ProcessTask.php55 pro zpracování delé trvajících úloh exportů.56 Proces musí být spuštěn pod uživatelem stejným jakoweb server (apache),57 kvůli správnému nastavování oprávnění při vytváření souborů ve složce58 tmp a kvůli bezpečnosti.54 At system start there is a need to start script Modules/Export/ProcessTask.php 55 for processing long lasting export tasks. 56 Process have to be executed under same user as web server (apache), 57 because of correct permission setting during file creation in directory 58 tmp and because of security. 59 59 60 60 61 61 8) AoWoW download 62 62 63 Stáhněte aowow z repozitářehttp://wowpreklad.zdechov.net/svn/wowpreklad/aowow64 jako podsložku do složky wowprekladu. Postupujte podle pokynů v souboru65 ReadMe.txt ve stažené složce.63 Download AoWoW from repository http://wowpreklad.zdechov.net/svn/wowpreklad/aowow 64 as subdirectory to directory of wowpreklad. Process according instructions in 65 file ReadMe.txt at the same directory. 66 66 67 67 -
trunk/admin/install.php
r816 r836 132 132 'Advertisement' => '', 133 133 'Locale' => 'cs', 134 'EnableGoogleTranslate' => false, 134 135 ), 135 136 'ForbiddedUserNames' => array('addon', 'admin', 'administrator'), … … 146 147 { 147 148 $Output = '<h3>Přihlášení k instalaci</h3>'. 148 149 150 151 152 153 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>'; 154 155 return($Output); 155 156 } -
trunk/includes/Version.php
r835 r836 6 6 // and system will need database update. 7 7 8 $Revision = 83 5; // Subversion revision8 $Revision = 836; // Subversion revision 9 9 $DatabaseRevision = 811; // Database structure revision 10 $ReleaseTime = '2015-08-2 4';10 $ReleaseTime = '2015-08-25'; -
trunk/includes/global.php
r831 r836 188 188 $data = str_replace('$b $b', '$b$b', $data); 189 189 $data = str_replace('| ', '|', $data); 190 191 $data = strip_tags($data); 190 192 191 193 return($data); -
trunk/includes/system.php
r817 r836 489 489 }// else $line = '['.$line.']'; 490 490 //if($line != '') echo(htmlspecialchars(str_repeat(' ',$nn).$line."\n")); 491 if($nn < 0) $nn = 0; 491 492 if($line != '') $out .= (str_repeat(' ', $nn).$line."\n"); 492 493 $s = substr($s, $end + 1, strlen($s));
Note:
See TracChangeset
for help on using the changeset viewer.