Хранилища Subversion ant

Редакция

Редакция 344 | Редакция 362 | К новейшей редакции | Авторство | Сравнить с предыдущей | Последнее изменение | Открыть журнал | Скачать | RSS

<?php

/**
 *  
 *  Codename: ant-ng - generator of sources.list for Debian and
 *  distributives, based on Debian
 *  http://alex-w.org.ru/p/antng/
 *
 *  Copyright (c) 2009 Alexander Wolf
 *  Dual licensed under the MIT and GNU LGPL licenses.
 *  http://alex-w.org.ru/p/antng/license
 *
 */


require_once dirname(__FILE__)."/init.php";

$scripts = "
<script type='text/javascript'>
(function($){
    // очищаем select
    $.fn.clearSelect = function() {
        return this.each(function(){
            if(this.tagName=='SELECT') {
                this.options.length = 0;
                $(this).attr('disabled','disabled');
            }
        });
    }
    // заполняем select
    $.fn.fillSelect = function(dataArray) {
        return this.clearSelect.each(function(){
            if(this.tagName=='SELECT') {
                var currentSelect = this;
                $.each(dataArray,function(index,data) {
                    var option = new Option(data.text,data.value);
                    if($.support.cssFloat) {
                        currentSelect.add(option,null);
                    } else {
                        currentSelect.add(option);
                    }
                });
            }
        });
    }
})(jQuery);
</script>

"
;

$smarty->assign('scripts', $scripts);

$smarty->display('default.tpl');

?>