Хранилища Subversion ant

Редакция

Редакция 322 | Редакция 324 | К новейшей редакции | Только различия | Не учитывать пробелы | Содержимое файла | Авторство | Последнее изменение | Открыть журнал | RSS

Редакция 322 Редакция 323
1
<?php
1
<?php
2
2
3
/**
3
/**
4
 * Project:     Ant: sources.list generator
4
 * Project:     Ant: sources.list generator
5
 * File:        classic.php
5
 * File:        classic.php
6
 *
6
 *
7
 * This application is free software; you can redistribute it and/or
7
 * This application is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
11
 *
12
 * This application is distributed in the hope that it will be useful,
12
 * This application is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 * Lesser General Public License for more details.
15
 * Lesser General Public License for more details.
16
 *
16
 *
17
 * You should have received a copy of the GNU Lesser General Public
17
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with this library; if not, write to the Free Software
18
 * License along with this library; if not, write to the Free Software
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
 *
20
 *
21
 */
21
 */
22
22
23
23
24
require_once dirname(__FILE__)."/lib/init.php";
24
require_once dirname(__FILE__)."/lib/init.php";
25
$status = $secure->wrapInt($_GET["step"]);
25
$status = $secure->wrapInt($_GET["step"]);
26
$dist   = $secure->wrapInt($_GET["d"]);
26
$dist   = $secure->wrapInt($_GET["d"]);
27
$vers   = $secure->wrapInt($_GET["v"]);
27
$vers   = $secure->wrapInt($_GET["v"]);
28
$mirror = $secure->wrapInt($_GET["m"]);
-
 
29
$reps   = $_GET["r"];
28
$reps   = $_GET["r"];
30
$ID     = $_GET["id"];
29
$ID     = $_GET["id"];
31
if(isset($ID)){    
30
if(isset($ID)){    
32
    list($mirror,$dist,$vers,$repstring) = split(",",$ID);
31
    list($dist,$vers,$repstring) = split(",",$ID);
33
    if(!empty($mirror)){$status=1;};
-
 
34
    if(!empty($dist)){$status=2;};
32
    if(!empty($dist)){$status=1;};
35
    if(!empty($vers)){$status=3;};
33
    if(!empty($vers)){$status=2;};
36
    if(!empty($repstring)){
34
    if(!empty($repstring)){
37
        $status=4;
35
        $status=4;
38
        $reps = split("-",$repstring);
36
        $reps = split("-",$repstring);
39
    };
37
    };
40
}elseif(!empty($mirror)){
38
}elseif(!empty($mirror)){
41
    $location="./classic.php?id=".$mirror;
39
    $location="./classic.php";
42
    if(!empty($dist)){$location.=",".$dist;}
40
    if(!empty($dist)){$location.="?id=".$dist;}
43
    if(!empty($vers)){$location.=",".$vers;}
41
    if(!empty($vers)){$location.=",".$vers;}
44
    if(!empty($reps)){
42
    if(!empty($reps)){
45
        for ($i=0;$i<count($reps);$i++) {
43
        for ($i=0;$i<count($reps);$i++) {
46
            $shortreps .= $reps[$i];
44
            $shortreps .= $reps[$i];
47
            if ($i<count($reps)-1) {
45
            if ($i<count($reps)-1) {
48
                    $shortreps .= "-";
46
                    $shortreps .= "-";
49
            }
47
            }
50
        }
48
        }
51
        $location.=",".$shortreps;
49
        $location.=",".$shortreps;
52
    }
50
    }
53
    header("Location: ".$location);
51
    header("Location: ".$location);
54
    exit;
52
    exit;
55
}
53
}
56
$infomsg = array( _("Step"), _("Next step"), _("Mirror selection"), _("Choosing a distribution"), _("Choosing a version of distribution"), _("Selection of repositories"), _("Get sources.list") );
54
$infomsg = array( _("Step"), _("Next step"), _("Mirror selection"), _("Choosing a distribution"), _("Choosing a version of distribution"), _("Selection of repositories"), _("Get sources.list") );
57
55
58
if (!isset($status)) { $status = 0; };
56
if (!isset($status)) { $status = 0; };
59
57
60
switch ($status) {
58
switch ($status) {
61
    case 1:
59
    case 1:
62
        // Выбор дистрибутива
60
        // Выбор дистрибутива
63
        $query =& $db->query("SELECT * FROM distribution");
61
        $query =& $db->query("SELECT * FROM distribution");
64
        $linux .= "<input type='hidden' name='m' value='".$mirror."'>";
62
        $linux .= "<input type='hidden' name='m' value='".$mirror."'>";
65
        while ($query->fetchInto($data, DB_FETCHMODE_ASSOC)) {
63
        while ($query->fetchInto($data, DB_FETCHMODE_ASSOC)) {
66
        $linux .= "<p><input type='radio' name='d' value='".$data["dist_id"]."'><span class='".$secure->stripStr($data["distua"])."'>".$secure->stripStr($data["distname"])."</span></p>\n";
64
        $linux .= "<p><input type='radio' name='d' value='".$data["dist_id"]."'><span class='".$secure->stripStr($data["distua"])."'>".$secure->stripStr($data["distname"])."</span></p>\n";
67
        }
65
        }
68
    break;
66
    break;
69
    case 2:
67
    case 2:
70
        // Выбор версии
68
        // Выбор версии
71
        $query =& $db->query("SELECT * FROM version v JOIN distribution d ON d.dist_id=v.dist_id WHERE v.dist_id='$dist'");
69
        $query =& $db->query("SELECT * FROM version v JOIN distribution d ON d.dist_id=v.dist_id WHERE v.dist_id='$dist'");
72
        $distvers = "<input type='hidden' name='m' value='".$mirror."'>";
70
        $distvers = "<input type='hidden' name='m' value='".$mirror."'>";
73
        $distvers .= "<p><input type='hidden' name='d' value='".$dist."'></p>\n";
71
        $distvers .= "<p><input type='hidden' name='d' value='".$dist."'></p>\n";
74
        while ($query->fetchInto($version, DB_FETCHMODE_ASSOC)) {
72
        while ($query->fetchInto($version, DB_FETCHMODE_ASSOC)) {
75
                if ($version["vname"]!="") {
73
                if ($version["vname"]!="") {
76
                        $distname = "&#8220;".$secure->stripStr($version["vname"])."&#8221;";
74
                        $distname = "&#8220;".$secure->stripStr($version["vname"])."&#8221;";
77
                } else {
75
                } else {
78
                        $distname = "";
76
                        $distname = "";
79
                }
77
                }
80
                $distvers .= "<p><input type='radio' name='v' value='".$version["version_id"]."' /><span class='".$secure->stripStr($version["distua"])."'>".$secure->stripStr($version["distname"])." ".$secure->stripStr($version["version"])." ".$distname."</span></p>\n";
78
                $distvers .= "<p><input type='radio' name='v' value='".$version["version_id"]."' /><span class='".$secure->stripStr($version["distua"])."'>".$secure->stripStr($version["distname"])." ".$secure->stripStr($version["version"])." ".$distname."</span></p>\n";
81
        }    break;
79
        }    break;
82
    case 3;
80
    case 3;
83
        // Выбор репозиториев
81
        // Выбор репозиториев
84
        $repos = "<input type='hidden' name='m' value='".$mirror."'>";
82
        $repos = "<input type='hidden' name='m' value='".$mirror."'>";
85
        $repodata=$core->getRepList($dist,$vers,$db);
83
        $repodata=$core->getRepList($dist,$vers,$db);
86
        $repos.="<input type='hidden' name='d' value='".$dist."'><input type='hidden' name='v' value='".$vers."'>";
84
        $repos.="<input type='hidden' name='d' value='".$dist."'><input type='hidden' name='v' value='".$vers."'>";
87
        for($i=0;$i<count($repodata[0]);$i++) {
85
        for($i=0;$i<count($repodata[0]);$i++) {
88
            if ($repodata[3][$i]==true){$ch="checked";} else{$ch="";}
86
            if ($repodata[3][$i]==true){$ch="checked";} else{$ch="";}
89
            $repos.="<input type='checkbox' name='r[]' ".$ch." value='".$repodata[0][$i]."'>".$repodata[1][$i]." <em>(".$repodata[2][$i].")</em><br>";
87
            $repos.="<input type='checkbox' name='r[]' ".$ch." value='".$repodata[0][$i]."'>".$repodata[1][$i]." <em>(".$repodata[2][$i].")</em><br>";
90
        };
88
        };
91
        $steps .= "<a href='classic.php?step='".$status."'&d='".$dist."'> ".$info[0]." ".$status."</a> ::";
89
        $steps .= "<a href='classic.php?step='".$status."'&d='".$dist."'> ".$info[0]." ".$status."</a> ::";
92
    break;
90
    break;
93
    case 4;
91
    case 4;
94
        // Получение sources.list
92
        // Получение sources.list
95
        $query =& $db->query("SELECT * FROM version v JOIN distribution d ON d.dist_id=v.dist_id JOIN dtype p ON d.disttype=p.type_id WHERE v.dist_id='$dist' AND v.version_id='$vers'");
93
        $query =& $db->query("SELECT * FROM version v JOIN distribution d ON d.dist_id=v.dist_id JOIN dtype p ON d.disttype=p.type_id WHERE v.dist_id='$dist' AND v.version_id='$vers'");
96
        $query->fetchInto($infodist, DB_FETCHMODE_ASSOC);
94
        $query->fetchInto($infodist, DB_FETCHMODE_ASSOC);
97
       
95
       
98
        $distname = "";
96
        $distname = "";
99
        if ($infodist["vname"]!="") {
97
        if ($infodist["vname"]!="") {
100
                $distname = "&#8220;".$secure->stripStr($infodist["vname"])."&#8221;";
98
                $distname = "&#8220;".$secure->stripStr($infodist["vname"])."&#8221;";
101
        }
99
        }
102
        $info = "<h2>"._("Repositories for")." <em class='".$secure->stripStr($infodist["distua"])."-em'>".$secure->stripStr($infodist["distname"])." ".$secure->stripStr($infodist["version"])." ".$distname."</em></h2>";
100
        $info = "<h2>"._("Repositories for")." <em class='".$secure->stripStr($infodist["distua"])."-em'>".$secure->stripStr($infodist["distname"])." ".$secure->stripStr($infodist["version"])." ".$distname."</em></h2>";
103
        $result = "<p>"._("Copy this strings into file")." <span id='sourceslist'>/etc/apt/sources.list</span>:</p><pre>";
101
        $result = "<p>"._("Copy this strings into file")." <span id='sourceslist'>/etc/apt/sources.list</span>:</p><pre>";
104
        $result .= $core->getSourceList($dist,$vers,$reps,$db);
102
        $result .= $core->getSourceList($dist,$vers,$reps,$db);
105
        $result .= "</pre>";
103
        $result .= "</pre>";
106
        $result = $info.$result."<p><a href='./get.php?id=".$dist.",".$vers.",".$repstring."'>".$infomsg[6]."</a></p>";
104
        $result = $info.$result."<p><a href='./get.php?id=".$dist.",".$vers.",".$repstring."'>".$infomsg[6]."</a></p>";
107
       
105
       
108
        $link="<div class='sllink'><a title='"._("Link to this sources.list")."' href=./classic.php?id=".$mirror.",".$dist.",".$vers.",".$repstring.">#</a></div>";
106
        $link="<div class='sllink'><a title='"._("Link to this sources.list")."' href=./classic.php?id=".$mirror.",".$dist.",".$vers.",".$repstring.">#</a></div>";
109
    break;
107
    break;
110
}
108
}
111
109
112
if ($status==3){$link='<div class="sllink"><a title="Ссылка на этот source.list" href=./classic.php?id='.$dist.",".$vers.",".$repstring.'>#</a></div>';}
110
if ($status==3){$link='<div class="sllink"><a title="Ссылка на этот source.list" href=./classic.php?id='.$dist.",".$vers.",".$repstring.'>#</a></div>';}
113
$steps="<a href='classic.php'>".$infomsg[0]." 0</a> ::";
111
$steps="<a href='classic.php'>".$infomsg[0]." 1</a> ::";
114
if ($status>0){ $steps .= "<a href='classic.php?id=".$mirror."'> ".$infomsg[0]." 1</a> ::"; } else { $steps.=" ".$infomsg[0]." 1 ::"; }
112
if ($status>0){ $steps .= "<a href='classic.php?id=".$dist."'> ".$infomsg[0]." 2</a> ::"; } else { $steps.=" ".$infomsg[0]." 2 ::"; }
115
if ($status>1){ $steps .= "<a href='classic.php?id=".$mirror.",".$dist."'> ".$infomsg[0]." 2</a> ::"; } else{ $steps.=" ".$infomsg[0]." 2 ::"; }
113
if ($status>1){ $steps .= "<a href='classic.php?id=".$dist.",".$vers."'> ".$infomsg[0]." 3</a> ::"; } else{ $steps.=" ".$infomsg[0]." 3 ::"; }
116
if ($status>2){ $steps .= "<a href='classic.php?id=".$mirror.",".$dist.",".$vers."'> ".$infomsg[0]." 3</a> ::"; } else { $steps.=" ".$infomsg[0]." 3 ::"; }
-
 
117
if ($status>3){ $steps .= '<a href=./classic.php?id='.$mirror.','.$dist.','.$vers.','.$repstring.'>'.$infomsg[0].' 4</a>'; } else { $steps.=" ".$infomsg[0]." 4"; }
114
if ($status>2){ $steps .= '<a href=./classic.php?id='.$dist.','.$vers.','.$repstring.'>'.$infomsg[0].' 4</a>'; } else { $steps.=" ".$infomsg[0]." 4"; }
118
115
119
$smarty->assign('feedaddr',$_SERVER["HTTP_HOST"].dirname($_SERVER["PHP_SELF"]));
116
$smarty->assign('feedaddr',$_SERVER["HTTP_HOST"].dirname($_SERVER["PHP_SELF"]));
120
$smarty->assign('stepinfo',$infomsg[0]);
117
$smarty->assign('stepinfo',$infomsg[0]);
121
$smarty->assign('nextstep',$infomsg[1]);
118
$smarty->assign('nextstep',$infomsg[1]);
122
$smarty->assign('mirrorselect',$infomsg[2]);
-
 
123
$smarty->assign('distrochoose',$infomsg[3]);
119
$smarty->assign('distrochoose',$infomsg[3]);
124
$smarty->assign('distrovchoose',$infomsg[4]);
120
$smarty->assign('distrovchoose',$infomsg[4]);
125
$smarty->assign('repselect',$infomsg[5]);
121
$smarty->assign('repselect',$infomsg[5]);
126
$smarty->assign('getsourceslist',$infomsg[6]);
122
$smarty->assign('getsourceslist',$infomsg[6]);
127
$smarty->assign('link',$link);
123
$smarty->assign('link',$link);
128
$smarty->assign('status',$status);
124
$smarty->assign('status',$status);
129
$smarty->assign('linux',$linux);
125
$smarty->assign('linux',$linux);
130
$smarty->assign('mirrors',$mirrors);
126
$smarty->assign('mirrors',$mirrors);
131
$smarty->assign('steps',$steps);
127
$smarty->assign('steps',$steps);
132
$smarty->assign('repos',$repos);
128
$smarty->assign('repos',$repos);
133
$smarty->assign('version',$distvers);
129
$smarty->assign('version',$distvers);
134
$smarty->assign('result',$result);
130
$smarty->assign('result',$result);
135
$smarty->assign('antversion',$core->getSetting('version',$db));
131
$smarty->assign('antversion',$core->getSetting('version',$db));
136
$smarty->assign('title',$core->getSetting('codename',$db));
132
$smarty->assign('title',$core->getSetting('codename',$db));
137
$smarty->assign('interface'," &bull; <a href='./changelog.php'>"._("Changes")."</a> &bull; ".$core->getInterfacesList($_SERVER["REQUEST_URI"],$db));
133
$smarty->assign('interface'," &bull; <a href='./changelog.php'>"._("Changes")."</a> &bull; ".$core->getInterfacesList($_SERVER["REQUEST_URI"],$db));
138
$smarty->assign('style',$core->getCSSList($db));
134
$smarty->assign('style',$core->getCSSList($db));
139
$smarty->assign('theme',$theme->getThemeName($core,$db));
135
$smarty->assign('theme',$theme->getThemeName($core,$db));
140
136
141
$smarty->display('classic.tpl');
137
$smarty->display('classic.tpl');
142
138
143
?>
139
?>
144
 
140