Changeset 504 for trunk/comparison.php
- Timestamp:
- Feb 14, 2013, 7:51:59 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 2 2 aowow 3 3 nbproject 4 .settings 5 .project 6 .buildpath
-
- Property svn:ignore
-
trunk/comparison.php
r466 r504 2 2 3 3 include('includes/global.php'); 4 ShowPage();5 4 6 echo('Text je porovnáván vždy ku předešlému (vlevo). Změny jsou zvýrazněny <span class="edit">barvou.</span><br /><br />');5 $Output = 'Text je porovnáván vždy ku předešlému (vlevo). Změny jsou zvýrazněny <span class="edit">barvou.</span><br /><br />'; 7 6 8 7 function CompareString($String1, $String2) … … 65 64 $Line = $BuffLine; 66 65 $i = $i - 1; 67 echo('Počet porovnávaných textů: <strong>'.$i.'</strong><br /> ');66 $Output .= 'Počet porovnávaných textů: <strong>'.$i.'</strong><br /> '; 68 67 69 echo('<strong>Číslo textu: <a href="http://www.wowhead.com/?quest='.$Textentry.'">'.$Textentry.'</a></strong>'.70 '<table class="BaseTable">' );71 echo('<tr><th>Přeložil</th>');68 $Output .= '<strong>Číslo textu: <a href="http://www.wowhead.com/?quest='.$Textentry.'">'.$Textentry.'</a></strong>'. 69 '<table class="BaseTable">'. 70 '<tr><th>Přeložil</th>'; 72 71 foreach($Line as $Index => $LineItem) 73 72 { 74 73 $DbResult = $System->Database->query('SELECT * FROM `User` WHERE `ID` = '.$LineItem['User']); 75 74 $LineUser = $DbResult->fetch_array(); 76 echo('<th>'.$LineUser['Name'].'</th>');75 $Output .= '<th>'.$LineUser['Name'].'</th>'; 77 76 } 78 echo('</tr>');79 echo('<tr>');80 echo('<th>ID textu</th>');77 $Output .= '</tr>'. 78 '<tr>'. 79 '<th>ID textu</th>'; 81 80 foreach($Line as $Index => $LineItem) 82 81 { 83 echo('<td><a href="form.php?group='.$GroupId.'&ID='.$LineItem['ID'].'">'.$LineItem['ID'].'</a></td>');82 $Output .= '<td><a href="form.php?group='.$GroupId.'&ID='.$LineItem['ID'].'">'.$LineItem['ID'].'</a></td>'; 84 83 } 85 echo('</tr>');86 echo('<tr><th>Převzato</th>');84 $Output .= '</tr>'. 85 '<tr><th>Převzato</th>'; 87 86 foreach($Line as $Index => $LineItem) 88 87 { 89 echo('<td><a href="form.php?group='.$GroupId.'&ID='.$LineItem['Take'].'">'.$LineItem['Take'].'</a></td>');88 $Output .= '<td><a href="form.php?group='.$GroupId.'&ID='.$LineItem['Take'].'">'.$LineItem['Take'].'</a></td>'; 90 89 } 91 echo('</tr>');92 echo('<tr><th>Jazyk</th>');90 $Output .= '</tr>'. 91 '<tr><th>Jazyk</th>'; 93 92 foreach($Line as $Index => $LineItem) 94 93 { 95 echo('<td>');96 WriteLanguagesWithoutSel($LineItem['Language']) ;97 echo('</td>');94 $Output .= '<td>'. 95 WriteLanguagesWithoutSel($LineItem['Language']). 96 '</td>'; 98 97 } 99 echo('</tr>');100 echo('<tr><th>Verze</th>');98 $Output .= '</tr>'. 99 '<tr><th>Verze</th>'; 101 100 foreach($Line as $Index => $LineItem) 102 101 { 103 echo('<td>');104 echo (GetVersionWOW($LineItem['VersionStart']).' - '.GetVersionWOW($LineItem['VersionEnd']));105 echo('</td>');102 $Output .= '<td>'; 103 $Output .= GetVersionWOW($LineItem['VersionStart']).' - '.GetVersionWOW($LineItem['VersionEnd']); 104 $Output .= '</td>'; 106 105 } 107 echo('</tr>');106 $Output .= '</tr>'; 108 107 foreach($TranslationTree[$GroupId]['Items'] as $Index => $TextItem) 109 108 { 110 109 if($Line[0][$TextItem['Column']] <> '') 111 110 { 112 echo('<tr><th>'.$TextItem['Name'].'</th>');111 $Output .= '<tr><th>'.$TextItem['Name'].'</th>'; 113 112 for($i = 0; $i < count($Line); $i++) 114 113 { 115 114 if($i > 0) 116 115 { 117 echo('<td>');118 echo(str_replace("\n", '<br/>', CompareString($Line[$i][$TextItem['Column']],$Line[$i - 1][$TextItem['Column']])));119 echo('</td>');120 } else echo('<td>'.$Line[$i][$TextItem['Column']].'</td>');116 $Output .= '<td>'; 117 $Output .= str_replace("\n", '<br/>', CompareString($Line[$i][$TextItem['Column']],$Line[$i - 1][$TextItem['Column']])); 118 $Output .= '</td>'; 119 } else $Output .= '<td>'.$Line[$i][$TextItem['Column']].'</td>'; 121 120 } 122 echo ('</tr>');121 $Output .= '</tr>'; 123 122 } 124 123 } 125 echo('</table>');126 } else ShowMessage('Nebylo zadáno ID.', MESSAGE_CRITICAL);124 $Output .= '</table>'; 125 } else $Output .= ShowMessage('Nebylo zadáno ID.', MESSAGE_CRITICAL); 127 126 128 Show Footer();127 ShowPage($Output); 129 128 130 129 ?>
Note:
See TracChangeset
for help on using the changeset viewer.