Хранилища Subversion ant

Сравнить редакции

Не учитывать пробелы Редакция 390 → Редакция 389

/branches/ant-ng/request.php
Файл удален
/branches/ant-ng/lib/core.php
86,8 → 86,7
$rq =& $this->db->query($query);
switch ($format) {
case 'html':
$show = "<fieldset><legend>".$info."</legend>\n<select id='".$name."' name='".$name."'>\n";
$show .= "<option value=''>".$info."</option>\n";
$show = "<fieldset><legend>".$info."</legend>\n<select id='".$name."' name='".$name."'>\n";
while ($rq->fetchInto($element)) {
$show .= "<option value='".$this->secure->checkInt($element["dist_id"])."'>".$this->secure->checkStr($element["distname"],1)."</option>\n";
}
288,11 → 287,8
}
 
// sourses.list
public function showSourcesList($requestID) {
public function showSourcesList() {
//TODO Написать генератор sources.list
list($distID,$versID,$repsIDs) = split(":",$requestID);
$reps = array();
$reps = split("-",$repsIDs);
}
// Проверка пароля (из формы авторизации)
358,7 → 354,6
return $result;
}
 
 
}
 
?>
/branches/ant-ng/index.php
70,10 → 70,7
</script>
";
 
$body = $core->showDistributionList("dist");;
 
$tmpl->assign('scripts', $scripts);
$tmpl->assign('body', $body);
 
$tmpl->display('default.tpl');