Changeset 216 for trunk/action.php


Ignore:
Timestamp:
Jun 24, 2009, 10:30:42 PM (15 years ago)
Author:
maron
Message:

Import textů z dbc souborů, úprava importu: # změněn text + přidán text , nezměněn text ovlivněn sloupec VersionEnd . neovlivněn text
Přidání sloupců pro indexování dbc souborů u tabulky verzí hry
Možnos vypráznění logu

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/action.php

    r213 r216  
    5252        echo ('<a href="?action=dbkit&amp;Take">Opravit data v sloupci Take</a><br />');
    5353        echo ('<a href="?action=dbkit&amp;ShortCut">Opravit data v sloupci ShortCut</a><br />');
     54       
     55        echo ('<br /><form action="?action=dbkit" method="post">');
     56        echo('Vymazat log typ : <input type="text" name="Type" /> ');
     57        echo('<input type="submit" value="Vymazat" /><br />');
     58    echo('</form><br />');
     59
     60    if (array_key_exists('Type',$_POST)) {
     61                        $sql = 'DELETE FROM log WHERE Type = '.$_POST['Type'];
     62                    $Database->SQLCommand($sql);
     63                        WriteLog('Vymazán log '.$_POST['Type'], 4);
     64                        echo (' Vymazán log '.$_POST['Type']);
     65    }
    5466   
    55     if (array_key_exists('find',$_POST)) {
     67        if (array_key_exists('find',$_POST)) {
    5668        echo ('Začínám nahrazovat: <br />');
    5769        $find = $_POST['find'];
     
    123135          foreach($Tables as $Table) {
    124136        echo ($Table.' ');
    125                 $sql = 'SELECT gs_orig.ID,
    126 gs_tran.entry,
    127 gs_tran.ShortCut as ShortCut_tran,
    128 gs_orig.ShortCut  as ShortCut_orig
    129 FROM '.$Table.' as gs_tran
    130 JOIN '.$Table.' as gs_orig ON gs_orig.entry = gs_tran.entry
    131 WHERE gs_tran.Language <> 0 AND gs_tran.ShortCut <> gs_orig.ShortCut';
    132                
     137                $sql = 'SELECT gs_orig.ID, gs_tran.entry, gs_tran.ShortCut as ShortCut_tran, gs_orig.ShortCut  as ShortCut_orig FROM '.$Table.' as gs_tran JOIN '.$Table.' as gs_orig ON gs_orig.entry = gs_tran.entry WHERE gs_tran.Language <> 0 AND gs_tran.ShortCut <> gs_orig.ShortCut';           
    133138            $ID = $Database->SQLCommand($sql);
    134139                while ($Line = mysql_fetch_assoc($ID)) {
Note: See TracChangeset for help on using the changeset viewer.