Changeset 250
- Timestamp:
- Jul 15, 2009, 8:56:37 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/TranslationList.php
r225 r250 222 222 if($Action == 'grouplist') 223 223 { 224 echo('<h3>Seznam překladových skupin </h3>');225 echo('<table class="BaseTable"><tr><th>Jméno</th><th>Zdroj pro import</th><th>Formáty exportu</th>< /tr>');224 echo('<h3>Seznam překladových skupin <a title="Záznam změn po importu" href="log.php?type=11">Změny v textech</a></h3>'); 225 echo('<table class="BaseTable"><tr><th>Jméno</th><th>Zdroj pro import</th><th>Formáty exportu</th><th>Datum porledního importu</th><th>Verze posledního importu</th></tr>'); 226 226 $Total = 0; 227 227 foreach($TranslationTree as $Group) … … 250 250 $Export .= ', Addon'; 251 251 } 252 echo('<tr><td><a href="?group='.$Group['Id'].'&action=filter">'.$Group['Name'].'</a></td><td>'.$Import.'</td><td>'.$Export.'</td>< /tr>');252 echo('<tr><td><a href="?group='.$Group['Id'].'&action=filter">'.$Group['Name'].'</a></td><td>'.$Import.'</td><td>'.$Export.'</td><td><a title="Změny po posledním importu u vybrané překladové skupiny" href="log.php?group='.$Group['Id'].'&type=11">'.$Group['LastImport'].'</a></td><td>'.GetVersionWOW($Group['LastVersion']).'</td></tr>'); 253 253 } 254 254 echo('</table>'); -
trunk/import/import_dbc.php
r227 r250 85 85 } 86 86 echo('<br />Celkem: '.$Count.' Nových: '.$NewCount.'<br />'); 87 $Database->SQLCommand('UPDATE `group` SET LastVersion = "'.$BuildNumber.'", LastImport = NOW() WHERE Id='.$GroupId); 87 88 } 88 89 echo('<strong>Dokončeno.</strong>'); -
trunk/import/import_lua.php
r227 r250 85 85 } 86 86 echo('<br />Celkem: '.$Count.' Nových: '.$NewCount.'<br />'); 87 $Database->SQLCommand('UPDATE `group` SET LastVersion = "'.$BuildNumber.'", LastImport = NOW() WHERE Id='.$Group['Id']); 87 88 } 88 89 } -
trunk/import/import_sql_mangos.php
r241 r250 171 171 } 172 172 echo('<br />Celkem: '.$Count.' Nových: '.$NewCount.'<br />'); 173 $Database->SQLCommand('UPDATE `group` SET LastVersion = "'.$BuildNumber.'", LastImport = NOW() WHERE Id='.$GroupId); 173 174 } 174 175 ?> -
trunk/includes/global.php
r247 r250 103 103 $Config['Web']['BaseURL'].'TranslationList.php?action=grouplist' => array(LICENCE_ANONYMOUS, 'Informace o překladových skupinách', 'Zdroje dat'), 104 104 $Config['Web']['BaseURL'].'version.php' => array(LICENCE_ANONYMOUS, 'Seznam verzí herního klienta', 'Verze hry'), 105 $Config['Web']['BaseURL'].'log.php?type=11' => array(LICENCE_ANONYMOUS, 'Záznam změn po importu', 'Změny v textech'),106 105 $Config['Web']['BaseURL'].'aowow' => array(LICENCE_ANONYMOUS, 'Vyhledávací databáze podobná WoWHead s překlady', 'AoWoW'), 107 106 $Config['Web']['BaseURL'].'Options.php' => array(LICENCE_USER, 'Nastavení uživatele', 'Nastavení'), -
trunk/log.php
r222 r250 34 34 if(array_key_exists('Page', $_GET)) $_SESSION['Page'] = $_GET['Page']; 35 35 else if(!array_key_exists('Page', $_SESSION)) $_SESSION['Page'] = 1; 36 if(array_key_exists('group', $_GET)) $_SESSION['group'] = $_GET['group']; 36 37 37 38 if(array_key_exists('type', $_GET)) $_SESSION['type'] = $_GET['type']; … … 41 42 else { 42 43 $Type = ''; 43 unset($_SESSION['type'] );44 unset($_SESSION['type'],$_SESSION['group']); 44 45 } 45 46 … … 60 61 61 62 if(array_key_exists('type', $_SESSION)) $Where = ' WHERE type = "'.$_SESSION['type'].'"'; 62 else $Where = ''; 63 else 64 { 65 if(array_key_exists('group', $_SESSION)) $Where = ' WHERE text LIKE "%'.$TranslationTree[$_SESSION['group']]['Name'].'%"'; 66 else $Where = ''; 67 } 68 if(($Where != '') and (array_key_exists('group', $_SESSION))) $Where .= ' AND text LIKE "%'.$TranslationTree[$_SESSION['group']]['Name'].'%"'; 69 63 70 $sql = 'SELECT *,(SELECT user.user FROM user WHERE user.id = log.user) as user FROM log '.$Where.'ORDER BY date DESC LIMIT '.(($_SESSION['Page'] - 1)*100).',100'; 64 71
Note:
See TracChangeset
for help on using the changeset viewer.