Changeset 569
- Timestamp:
- Aug 21, 2013, 9:49:36 PM (11 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/ClientVersion/ClientVersion.php
r556 r569 16 16 function Start() 17 17 { 18 $this->System->RegisterPage(' version.php', 'PageClientVersion');18 $this->System->RegisterPage('client-version', 'PageClientVersion'); 19 19 $this->System->RegisterMenuItem(array( 20 20 'Title' => 'Verze hry', 21 21 'Hint' => 'Seznam verzí herního klienta', 22 'Link' => $this->System->Link('/ version.php'),22 'Link' => $this->System->Link('/client-version/'), 23 23 'Permission' => LICENCE_ANONYMOUS, 24 24 'Icon' => '', -
trunk/Modules/Dictionary/Dictionary.php
r557 r569 16 16 function Start() 17 17 { 18 $this->System->RegisterPage('dictionary .php', 'PageDictionary');18 $this->System->RegisterPage('dictionary', 'PageDictionary'); 19 19 $this->System->RegisterMenuItem(array( 20 20 'Name' => 'Dictionary', 21 21 'Title' => 'Slovníček', 22 22 'Hint' => 'Slovník WoW výrazů', 23 'Link' => $this->System->Link('/dictionary .php'),23 'Link' => $this->System->Link('/dictionary/'), 24 24 'Permission' => LICENCE_ANONYMOUS, 25 25 'Icon' => '', … … 81 81 if($User->Licence(LICENCE_USER)) 82 82 { 83 $Output .= '<form action=" dictionary.php?action=save" method="post">'.83 $Output .= '<form action="?action=save" method="post">'. 84 84 '<fieldset><legend>Vložení nového slova</legend>'. 85 85 '<table><tr><td>'. … … 161 161 'AND (`Entry`='.$DbRow['Entry'].') AND (`Language`= '.$Config['OriginalLanguage'].')'); 162 162 $DbRow2 = $DbResult->fetch_assoc(); 163 $Output = '<form action=" dictionary.php?action=save" method="post">'.163 $Output = '<form action="?action=save" method="post">'. 164 164 '<fieldset><legend>Upravení slova</legend>'. 165 165 '<input type="hidden" name="id" value="'.$_GET['id'].'"/>'. … … 213 213 global $User, $LanguageList, $Config; 214 214 215 $Output = '<form action=" dictionary.php" method="get" style="margin: 0px; padding: 0px;">'.215 $Output = '<form action="?" method="get" style="margin: 0px; padding: 0px;">'. 216 216 '<table style="width: 100%; height: 100%;">'; 217 217 … … 222 222 <input type="text" value="'.$Search.'" name="search" size="30" /> 223 223 <input type="submit" value="Vyhledat" />'; 224 if($User->Licence(LICENCE_USER)) $Output .= ' <a href=" dictionary.php?action=insert">Vložit slovo</a>';224 if($User->Licence(LICENCE_USER)) $Output .= ' <a href="?action=insert">Vložit slovo</a>'; 225 225 226 226 $Output .= '</td></tr>'. -
trunk/Modules/Export/Page.php
r565 r569 16 16 } 17 17 18 if($User->Licence(LICENCE_USER)) 19 $Output .= '<br/><div style="text-align: center;"><a href="?Action=Create">Vytvořit nový export</a></div><br/>'; 20 18 21 $Filter = ''; 19 22 if(array_key_exists('Filter', $_GET)) … … 61 64 $PageList['Output']; 62 65 63 if($User->Licence(LICENCE_USER))64 $Output .= '<br/><div style="text-align: center;"><a href="?Action=Create">Vytvořit nový export</a></div>';65 66 return($Output); 66 67 } -
trunk/Modules/Log/Log.php
r568 r569 54 54 'VALUES ('.$UserId.', '.$Type.', "'.addslashes($Text).'", NOW(), "'.$IP.'", "'.$_SERVER['REQUEST_URI'].'")'; 55 55 $System->Database->query($Query); 56 echo($Query);57 56 } 58 57 -
trunk/Modules/Referrer/Referrer.php
r559 r569 21 21 { 22 22 $this->Log(); 23 $this->System->RegisterPage(' banners.php', 'PageReferrer');23 $this->System->RegisterPage('referrer', 'PageReferrer'); 24 24 $this->System->RegisterMenuItem(array( 25 25 'Title' => 'Propagace', 26 26 'Hint' => 'Informace k propagaci tohoto projektu', 27 'Link' => $this->System->Link('/ banners.php'),27 'Link' => $this->System->Link('/referrer/'), 28 28 'Permission' => LICENCE_ANONYMOUS, 29 29 'Icon' => '', -
trunk/Modules/Server/Server.php
r555 r569 16 16 function Start() 17 17 { 18 $this->System->RegisterPage('server list.php', 'PageServerList');18 $this->System->RegisterPage('server', 'PageServerList'); 19 19 $this->System->RegisterMenuItem(array( 20 20 'Title' => 'Servery', 21 21 'Hint' => 'Seznam serverů, kde je nasazena čeština v praxi', 22 'Link' => $this->System->Link('/server list.php'),22 'Link' => $this->System->Link('/server/'), 23 23 'Permission' => LICENCE_ANONYMOUS, 24 24 'Icon' => '', -
trunk/Modules/Team/Team.php
r555 r569 16 16 function Start() 17 17 { 18 $this->System->RegisterPage('team .php', 'PageTeam');18 $this->System->RegisterPage('team', 'PageTeam'); 19 19 $this->System->RegisterMenuItem(array( 20 20 'Title' => 'Týmy', 21 21 'Hint' => 'Seznam překladatelských týmů', 22 'Link' => $this->System->Link('/team .php?search='),22 'Link' => $this->System->Link('/team/?search='), 23 23 'Permission' => LICENCE_ANONYMOUS, 24 24 'Icon' => '', … … 37 37 $Output = '<h3>Seznam překladatelských týmů</h3>'; 38 38 $Output .= 'Týmy jsou seskupení překladatelů, kteří se hlásí k něčemu společnému jako např. WoW serveru, způsobu překladu, ke stejnému hernímu spolku, aj. Být členem týmu samo o sobě nemá žádný zásadní důsledek a spíše to může pomoci se lépe orientovat mezi překladateli někomu, kdo sestavuje export.<br/>'; 39 $DbResult = $this->Database->query('SELECT COUNT(*) FROM `Team`'); 39 40 if($User->Licence(LICENCE_USER)) 41 $Output .= '<br /><div style="text-align: center;"><a href="?action=create">Vytvořit překladatelský tým</a></div><br/>'; 42 43 $DbResult = $this->Database->query('SELECT COUNT(*) FROM `Team`'); 40 44 $DbRow = $DbResult->fetch_row(); 41 45 $PageList = GetPageList($DbRow[0]); … … 81 85 $PageList['Output']; 82 86 83 if($User->Licence(LICENCE_USER))84 $Output .= '<br /><div style="text-align: center;"><a href="?action=create">Vytvořit překladatelský tým</a></div>';85 87 return($Output); 86 88 } -
trunk/Modules/Translation/Form.php
r561 r569 129 129 { 130 130 $Output .= '<form action="save.php?group='.$GroupId.'" method="post"><div>'; 131 // TODO: Remove fixed group id condition 131 132 if(($GroupId < 4) or ($GroupId == 10) or ($GroupId == 11)) 132 $Output .= '<a href=" dictionary.php?action=group&group='.$GroupId.'&ID='.$LineAJ['ID'].'" target="_blank" title="Zobrazit přeložené názvy věci, postav, a herních objektů k tomuto překladu">Vyhledat v názvech</a>';133 $Output .= '<a href="'.$this->System->Link('/dictionary/?action=group&group='.$GroupId.'&ID='.$LineAJ['ID']).'" target="_blank" title="Zobrazit přeložené názvy věci, postav, a herních objektů k tomuto překladu">Vyhledat v názvech</a>'; 133 134 $Output .= ' <input type="submit" value="Uložit do rozepsaných" name="save" title="Klikněte na uložit pro pozdější dokončení překladu" />'. 134 135 '<input type="submit" value="Dokončeno" name="End" title="Klikněte na Dokončeno jesli jsou všechny texty hotové a chcete již publikovat" /> '; -
trunk/Modules/User/Options.php
r547 r569 39 39 $Output .= ' <fieldset><legend>Překladatelský tým</legend>'; 40 40 $DbResult = $this->Database->query('SELECT `Id`, `Name` FROM `Team`'); 41 $Output .= '<a href="team .php?action=create">Vytvořit tým</a><br />'.42 '<a href="team .php?action=leave">Opustit tým</a><br />'.43 '<br /><form action="team .php" method="get">'.41 $Output .= '<a href="team/?action=create">Vytvořit tým</a><br />'. 42 '<a href="team/?action=leave">Opustit tým</a><br />'. 43 '<br /><form action="team/" method="get">'. 44 44 '<input type="hidden" name="action" value="gointeam"/>'. 45 45 '<select name="id">'; -
trunk/Modules/User/Profile.php
r563 r569 133 133 'Počet přeložených: <a href="TranslationList.php?user='.$UserLine['ID'].'&state=2&group=0" title="Zobrazit Všechny jeho přeložené texty"><strong>'.$UserLine['TranslatedCount'].'</strong></a><br />'; 134 134 if($UserLine['TeamName'] != '') 135 $Output .= 'Člen týmu: <a href="team .php?action=team&id='.$UserLine['Team'].'"><strong>'.$UserLine['TeamName'].'</strong></a><br />';135 $Output .= 'Člen týmu: <a href="team/?action=team&id='.$UserLine['Team'].'"><strong>'.$UserLine['TeamName'].'</strong></a><br />'; 136 136 $Output .= '<fieldset><legend>Text profilu:</legend>'.str_replace("\n", '<br/>', $UserLine['Info']).'</fieldset><br/>'; 137 137 -
trunk/action.php
r563 r569 34 34 $DbResult = $System->Database->query('SELECT count(*) FROM `Team` WHERE `Name` LIKE "%'.$Search.'%" OR `Description` LIKE "%'.$Search.'%"'); 35 35 $Line = $DbResult->fetch_row(); 36 $Output .= '<tr><td><a href="team .php?search='.$Search.'">Týmy</a></td><td>'.$Line[0].'</td></tr>';36 $Output .= '<tr><td><a href="team/?search='.$Search.'">Týmy</a></td><td>'.$Line[0].'</td></tr>'; 37 37 38 38 $DbResult = $System->Database->query('SELECT count(*) FROM `CzWoWPackageVersion` WHERE `Text` LIKE "%'.$Search.'%"'); … … 43 43 $DbResult = $System->Database->query('SELECT count(*) FROM `Dictionary` WHERE (`Text` LIKE "%'.$Search.'%" OR `Description` LIKE "%'.$Search.'%") AND `Language` = '.$Config['OriginalLanguage']); 44 44 $Line = $DbResult->fetch_row(); 45 $Output .= '<tr><td><a href="dictionary .php?search='.$Search.'">Slovníček</a></td><td>'.$Line[0].'</td></tr>';45 $Output .= '<tr><td><a href="dictionary/?search='.$Search.'">Slovníček</a></td><td>'.$Line[0].'</td></tr>'; 46 46 47 47 $Output .= '</table>'; -
trunk/includes/Version.php
r568 r569 1 1 <?php 2 2 3 $Revision = 56 8; // Subversion revision3 $Revision = 569; // Subversion revision 4 4 $DatabaseRevision = 567; // Database structure revision 5 5 $ReleaseTime = '2013-08-21';
Note:
See TracChangeset
for help on using the changeset viewer.