Changeset 665


Ignore:
Timestamp:
Dec 24, 2013, 1:32:58 PM (11 years ago)
Author:
maron
Message:
  • Added: MPQ base files
  • Added: Fonts to export files
  • Added: get version from php cmdmpqexport.php
Location:
trunk
Files:
7 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Modules/Export/cmdmpqexport.php

    r658 r665  
    66$_SERVER['REQUEST_URI'] = '127.0.0.1';
    77
    8 include_once('../../includes/global.php');
     8include_once(dirname(__FILE__).'/../../includes/global.php');
    99//include_once('../../includes/dbc.php');
    1010include_once('Export.php');   
     
    3636  }
    3737}
    38 if(!array_key_exists('ExportId', $_GET) and !array_key_exists('dbc', $_GET) and !array_key_exists('lua', $_GET) and !array_key_exists('addon', $_GET)) {
     38if(!array_key_exists('ExportId', $_GET) and !array_key_exists('version', $_GET) and !array_key_exists('dbc', $_GET) and !array_key_exists('lua', $_GET) and !array_key_exists('addon', $_GET)) {
    3939  $Output .= 'Usage type_export=id_export -for export<br />';
    4040  $Output .= 'Usage ExportId=id_export - for write export info<br />';
     
    5050  $Output .= $Export->Init();                   
    5151  $Output .= $Export->ExportToLua();
     52  $Output = str_replace('<br/>','
     53',$Output);
     54  $Output = str_replace('<br />','
     55',$Output);
     56}
     57if(array_key_exists('version', $_GET)) {
     58  $Export = new Export($System);
     59  $Export->Id = $_GET['version'];
     60  $Export->LoadFilters();   
     61  $Output .= $Export->ClientVersion['Version'];
    5262  $Output = str_replace('<br/>','
    5363',$Output);
     
    7787
    7888if(array_key_exists('ExportId', $_GET)) {
     89  $Export = new Export($System);
     90  $Export->Id = $_GET['ExportId'];
     91  $Export->LoadFilters(); 
     92 
    7993  //generation readme
    8094  $Output .= '<?xml version="1.0" encoding="utf-8"?\>'.
     
    102116'<p><strong>Vlastnosti</strong>'.
    103117'<ul>'.
    104 '<li>Požadovaná verze klienta: 3.3.3a</li>'.
     118'<li>Požadovaná verze klienta: '.$Export->ClientVersion['Version'].'</li>'.
    105119'<li>Datum uvolnění: '.date('d.m.Y h:m',time()).'</li>'.
    106120'<li>Sestaveno automaticky překladovým systémem <a href="http://wowpreklad.zdechov.net/">WoW překlad</a></li>'.
    107 '<li>Tento soubor se generuje každý den. Pokud se zapojíte do překladu, zítra můžete stáhnout tento soubor znovu včetně svých překladů</li>'.
    108 '<li>Sestavil: Maron</li>'.
     121//'<li>Tento soubor se generuje každý den. Pokud se zapojíte do překladu, zítra můžete stáhnout tento soubor znovu včetně svých překladů</li>'.
     122//'<li>Sestavil: Maron</li>'.
    109123'</ul>'.
    110124'</p>'.
  • trunk/includes/Version.php

    r664 r665  
    66// and system will need database update.
    77
    8 $Revision = 664; // Subversion revision
     8$Revision = 665; // Subversion revision
    99$DatabaseRevision = 646; // Database structure revision
    10 $ReleaseTime = '2013-12-20';
     10$ReleaseTime = '2013-12-24';
Note: See TracChangeset for help on using the changeset viewer.