Хранилища Subversion ant

Редакция

Редакция 45 | Содержимое файла | Сравнить с предыдущей | Последнее изменение | Открыть журнал | RSS

Редакция Автор № строки Строка
43 alex-w 1
<?php
2
 
3
/**
4
 * Project:     Ant: sources.list generator
5
 * File:        modern.php
6
 *
7
 * This application is free software; you can redistribute it and/or
8
 * modify it under the terms of the GNU Lesser General Public
9
 * License as published by the Free Software Foundation; either
10
 * version 2.1 of the License, or (at your option) any later version.
11
 *
12
 * This application is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
 * Lesser General Public License for more details.
16
 *
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
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20
 *
21
 */
22
 
23
 
24
include "lib/init.php";
25
 
26
$query =& $db->query("SELECT * FROM settings WHERE opt LIKE 'version'");
27
$query->fetchInto($antv, DB_FETCHMODE_ASSOC);
28
$antversion = $antv["optvalue"];
29
 
45 alex-w 30
$scripts = "
31
(function($){
32
  // очищаем select
33
  $.fn.clearSelect = function() {
34
          return this.each(function(){
35
                  if(this.tagName=='SELECT') {
36
                      this.options.length = 0;
37
                      $(this).attr('disabled','disabled');
38
                  }
39
          });
40
  }
41
  // заполняем select
42
  $.fn.fillSelect = function(dataArray) {
43
          return this.clearSelect().each(function(){
44
                  if(this.tagName=='SELECT') {
45
                          var currentSelect = this;
46
                          $.each(dataArray,function(index,data){
47
                                  var option = new Option(data.text,data.value);
48
                                  if($.support.cssFloat) {
49
                                          currentSelect.add(option,null);
50
                                  } else {
51
                                          currentSelect.add(option);
52
                                  }
53
                          });
54
                  }
55
          });
56
  }
57
})(jQuery);
58
</script>
59
<script type='text/javascript'>
60
$(document).ready(function(){
61
  // выбор дистрибутива
62
  function adjustDistro(){
63
        var distroValue = $('#distro').val();
64
        var tmpSelect = $('#distver');
65
        if(distroValue.length == 0) {
66
                tmpSelect.attr('disabled','disabled');
67
                tmpSelect.clearSelect();
68
                adjustReps();
69
                $('#replist').css('display','none');
70
        } else {
71
                $.getJSON('m-process.php',{d:distroValue,status:1},function(data) { tmpSelect.fillSelect(data).attr('disabled',''); adjustReps(); });
72
                $('#replist').css('display','none');
73
        }
74
  };
75
  // Выбор версии дистрибутива
76
  function adjustReps(){
77
        var distroValue = $('#distro').val();
78
        var versionValue = $('#distver').val();
79
        if (distroValue != 0 && versionValue != 0) {
80
                $.get('m-process.php',{d:distroValue,v:versionValue,status:2},function(data){ $('#replist').css('display','block'); $('#replist').html(data); },'html');
81
        }
82
  }
43 alex-w 83
 
45 alex-w 84
  $('#distro').change(adjustDistro);
85
  $('#distver').change(adjustReps);
43 alex-w 86
 
45 alex-w 87
});
88
";
43 alex-w 89
 
90
$query =& $db->query("SELECT * FROM distribution");
91
while ($query->fetchInto($data, DB_FETCHMODE_ASSOC)) {
45 alex-w 92
        $linux .= "<option value='".$data["dist_id"]."'>".stripslashes($data["distname"])."</option>\n";
43 alex-w 93
}
94
 
45 alex-w 95
$modern .= "<h2>Генератор sources.list</h2>";
96
$modern .= "<div class='border'>";
97
$modern .= "<label>Дистрибутив</label><br />";
98
$modern .= "<select id='distro'>\n<option value=''>Выбрать дистрибутив</option>\n";
99
$modern .= $linux."</select>";
100
$modern .= "</div><div class='border'>";
101
$modern .= "<label>Версия дистрибутива</label><br />";
102
$modern .= "<select id='distver' disabled='disabled'>\n";
103
$modern .= "</select></div>";
104
$modern .= "<pre id='replist'></pre></div>";
43 alex-w 105
 
106
$smarty->assign('modern',$modern);
107
$smarty->assign('scripts',$scripts);
45 alex-w 108
$smarty->assign('antversion',$antversion." &bull; <a href='./classic.php'>Классический интерфейс</a>");
43 alex-w 109
 
110
$smarty->display('modern.tpl');
111
 
112
?>