Changeset 417 for trunk/export


Ignore:
Timestamp:
Apr 7, 2010, 7:31:53 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Generování absolutní cesty nově provádět přes metodu System->Link se zadáním absolutní cesty v rámci projektu jako parametru. Tato adresa se převede na absolutní v rámci serveru s využitím parametru ConfigWebBaseURL.
Location:
trunk/export
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/export/export.php

    r408 r417  
    7373      "-- ===========================================\n".
    7474      "--\n".
    75       "-- Web projektu: ".$this->Config['Web']['BaseURL']."\n".
     75      "-- Web projektu: ".$this->Config['Web']['Host'].$this->System->Link('/')."\n".
    7676      "-- Datum exportu: ".date("j.n.Y  H:i:s")."\n".
    7777      "-- Znaková sada: ".$this->Config['Database']['Charset']." / ".$this->Config['Web']['Charset']."\n".
     
    192192    "<document>\n".
    193193    "  <meta>\n".
    194     "    <projecturl>".$this->Config['Web']['BaseURL']."</projecturl>\n".
     194    "    <projecturl>".$this->Config['Web']['Host'].$this->System->Link('/')."</projecturl>\n".
    195195    "    <time>".date('r')."</time>\n".
    196196    "    <diacritics mode=".'"'.$this->Export['WithDiacritic'].'"'." />\n".
  • trunk/export/index.php

    r412 r417  
    7979function ExportCreateFinish()
    8080{
    81   global $Database, $Config, $User;
     81  global $Database, $Config, $User, $System;
    8282 
    8383  if($User->Licence(LICENCE_USER))
     
    9292        $ExportId = mysql_insert_id();
    9393        echo('Nový export vytvořen.<br/>Přímý odkaz na tento export: <a href="?Action=View&amp;ExportId='.$ExportId.'">zde</a><br/><br/>');
    94         WriteLog('Vytvořen nový export <a href="'.$Config['Web']['BaseURL'].'export/?Action=View&amp;ExportId='.$ExportId.'">'.$ExportId.'</a>.', LOG_TYPE_EXPORT);
     94        WriteLog('Vytvořen nový export <a href="'.$System->Link('/export/?Action=View&amp;ExportId='.$ExportId).'">'.$ExportId.'</a>.', LOG_TYPE_EXPORT);
    9595        $_GET['Filter'] = 'my';
    9696        ExportList();
     
    118118function ExportViewTranslators()
    119119{
    120   global $Database, $TranslationTree, $Config, $User;
     120  global $Database, $TranslationTree, $Config, $User, $System;
    121121
    122122  $DisabledInput = array(false => ' disabled="disabled"', true => '');
     
    201201    $Sequence = '<input type="text" name="seq'.$UserLine['ID'].'" style="text-align: center; width: 40px;" value="'.$UserLine['Sequence2'].'"'.$DisabledInput[$Editable].'/>';
    202202    echo('<tr>
    203     <td><a href="'.$Config['Web']['BaseURL'].'/TranslationList.php?user='.$UserLine['ID'].'&amp;action=userall" title="Zobrazit všechny jeho přeložené texty">'.$UserLine['Name'].'</a></td>
     203    <td><a href="'.$System->Link('/TranslationList.php?user='.$UserLine['ID'].'&amp;action=userall').'" title="Zobrazit všechny jeho přeložené texty">'.$UserLine['Name'].'</a></td>
    204204    <td>'.$UserLine['TranslatedCount'].'</td>
    205205      <td><img src="'.$Config['Web']['TempFolder'].'/user/'.$UserLine['Name'].'/level.png" alt="Úroveň uživatele" /></td>
Note: See TracChangeset for help on using the changeset viewer.