Хранилища Subversion ant

Редакция

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

Редакция 468 Редакция 470
Строка 20... Строка 20...
20
20
21
if($distr==0) {
21
if($distr==0) {
22
        $reps =& $db_apt->query("SELECT * FROM reps");
22
        $reps =& $db_apt->query("SELECT * FROM reps");
23
        while ($reps->fetchInto($info_reps,DB_FETCHMODE_ASSOC)) {
23
        while ($reps->fetchInto($info_reps,DB_FETCHMODE_ASSOC)) {
24
            $dists =& $db_apt->query("SELECT * FROM reps2dists JOIN dists ON reps2dists.dist_id=dists.id WHERE rep_id=".$info_reps['id']);
24
            $dists =& $db_apt->query("SELECT * FROM reps2dists JOIN dists ON reps2dists.dist_id=dists.id WHERE rep_id=".$info_reps['id']);
25
            echo $info_reps['rep']."<br>";
25
            echo "# ".$info_reps['rep']."<br>";
26
            while ($dists->fetchInto($info_dists,DB_FETCHMODE_ASSOC)) {
26
            while ($dists->fetchInto($info_dists,DB_FETCHMODE_ASSOC)) {
27
                echo " http://apt.nix-files.org.ru/".$info_reps['rep']." ".$info_dists['dists.dist'];
27
                echo " http://apt.nix-files.org.ru/".$info_reps['rep']." ".$info_dists['dists.dist'];
28
                $sects =& $db_apt->query("SELECT * FROM reps2dists2sects JOIN sects ON reps2dists2sects.sect_id=sects.id WHERE reps2dists_id==".$info_dists['reps2dists.id']);
28
                $sects =& $db_apt->query("SELECT * FROM reps2dists2sects JOIN sects ON reps2dists2sects.sect_id=sects.id WHERE reps2dists_id==".$info_dists['reps2dists.id']);
29
                while ($sects->fetchInto($info_sects,DB_FETCHMODE_ASSOC)) {
29
                while ($sects->fetchInto($info_sects,DB_FETCHMODE_ASSOC)) {
30
                    echo " ".$info_sects['sects.sect'];
30
                    echo " ".$info_sects['sects.sect'];
Строка 37... Строка 37...
37
        $codename =& $db_set->getOne("SELECT codename FROM vers WHERE id=".$distr);
37
        $codename =& $db_set->getOne("SELECT codename FROM vers WHERE id=".$distr);
38
       
38
       
39
        $reps =& $db_apt->query("SELECT * FROM reps");
39
        $reps =& $db_apt->query("SELECT * FROM reps");
40
        while ($reps->fetchInto($info_reps,DB_FETCHMODE_ASSOC)) {
40
        while ($reps->fetchInto($info_reps,DB_FETCHMODE_ASSOC)) {
41
            $dists =& $db_apt->query('SELECT * FROM reps2dists JOIN dists ON reps2dists.dist_id=dists.id WHERE rep_id='.$info_reps['id'].' AND dists.dist LIKE "'.$codename.'%"');
41
            $dists =& $db_apt->query('SELECT * FROM reps2dists JOIN dists ON reps2dists.dist_id=dists.id WHERE rep_id='.$info_reps['id'].' AND dists.dist LIKE "'.$codename.'%"');
42
            if ($dists->numRows()!=0) echo $info_reps['rep']."<br>";
42
            if ($dists->numRows()!=0) echo "# ".$info_reps['rep']."<br>";
43
            while ($dists->fetchInto($info_dists,DB_FETCHMODE_ASSOC)) {
43
            while ($dists->fetchInto($info_dists,DB_FETCHMODE_ASSOC)) {
44
                echo " http://apt.nix-files.org.ru/".$info_reps['rep']." ".$info_dists['dists.dist'];
44
                echo " http://apt.nix-files.org.ru/".$info_reps['rep']." ".$info_dists['dists.dist'];
45
                $sects =& $db_apt->query("SELECT * FROM reps2dists2sects JOIN sects ON reps2dists2sects.sect_id=sects.id WHERE reps2dists_id==".$info_dists['reps2dists.id']);
45
                $sects =& $db_apt->query("SELECT * FROM reps2dists2sects JOIN sects ON reps2dists2sects.sect_id=sects.id WHERE reps2dists_id==".$info_dists['reps2dists.id']);
46
                while ($sects->fetchInto($info_sects,DB_FETCHMODE_ASSOC)) {
46
                while ($sects->fetchInto($info_sects,DB_FETCHMODE_ASSOC)) {
47
                    echo " ".$info_sects['sects.sect'];
47
                    echo " ".$info_sects['sects.sect'];