%PDF- %PDF-
Direktori : /home1/lightco1/public_html/plugins/installer/webinstaller/js/ |
Current File : //home1/lightco1/public_html/plugins/installer/webinstaller/js/client.js |
// Only define the Joomla namespace if not defined. if (typeof(Joomla) === 'undefined') { var Joomla = {}; } Joomla.apps = { view: "dashboard", id: 0, ordering: "", // fonturl: 'http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic', cssfiles: [], jsfiles: [], list: 0, loaded: 0, update: false }; Joomla.loadweb = function(url) { if ('' == url) { return false; } var pattern1 = new RegExp(apps_base_url); var pattern2 = new RegExp("^index\.php"); if (!(pattern1.test(url) || pattern2.test(url))) { window.open(url, "_blank"); return false; } url += '&product='+apps_product+'&release='+apps_release+'&dev_level='+apps_dev_level+'&list='+(Joomla.apps.list ? 'list' : 'grid')+'&pv='+apps_pv; var ordering = Joomla.apps.ordering; if (ordering !== "" && jQuery('#com-apps-ordering').val()) { ordering = jQuery('#com-apps-ordering').val(); url += '&ordering='+ordering; } jQuery('html, body').animate({ scrollTop: 0 }, 0); if (jQuery('#myTabContent').length) { jQuery('#appsloading') .css("top", jQuery('#myTabContent').position().top - jQuery(window).scrollTop()) .css("left", jQuery('#myTabContent').position().left - jQuery(window).scrollLeft()) .css("width", jQuery('#myTabContent').width()) .css("height", jQuery('#myTabContent').height()); jQuery.event.trigger("ajaxStart"); } jQuery.ajax({ url: url, dataType: 'jsonp', cache: true, jsonpCallback: "jedapps_jsonpcallback", timeout: 20000, success: function (response) { jQuery('#web-loader').hide(); jQuery('#jed-container').html(response.data.html); if (!Joomla.apps.update && response.data.pluginuptodate < 1) { Joomla.apps.update = true; var txt = apps_obsolete; var btn = apps_updateavail2; if (response.data.pluginuptodate == 0) { txt = apps_updateavail1; } jQuery('#web').prepend(jQuery('<div class="alert alert-info j-jed-message" style="margin-bottom: 20px; line-height: 2em; color:#333333;">'+txt+' <input class="btn" type="button" value="'+btn+'" onclick="Joomla.submitbuttonInstallWebInstaller()" /></div>')); } if (jQuery('#myTabContent').length) { jQuery.event.trigger("ajaxStop"); } }, fail: function() { jQuery('#web-loader').hide(); jQuery('#web-loader-error').show(); if (jQuery('#myTabContent').length) { jQuery.event.trigger("ajaxStop"); } }, complete: function() { if(jQuery('#joomlaapsinstallatinput')) { jQuery('#joomlaapsinstallatinput').val(apps_installat_url); } Joomla.apps.clickforlinks(); Joomla.apps.clicker(); if (Joomla.apps.list) { jQuery(".list-view").click(); } if (jQuery('#myTabContent').length) { jQuery.event.trigger("ajaxStop"); } }, error: function(request, status, error) { if (request.responseText) { jQuery('#web-loader-error').html(request.responseText); } jQuery('#web-loader').hide(); jQuery('#web-loader-error').show(); if (jQuery('#myTabContent').length) { jQuery.event.trigger("ajaxStop"); } } }); return true; } Joomla.webpaginate = function(url, target) { jQuery('#web-paginate-loader').show(); jQuery.get(url, function(response) { jQuery('#web-paginate-loader').hide(); jQuery('#'+target).html(response.data.html); }, 'jsonp').fail(function() { jQuery('#web-paginate-loader').hide(); //jQuery('#web-paginate-error').hide(); }); } Joomla.installfromwebexternal = function(redirect_url) { var redirect_confirm = confirm('You will be redirected to the following link to complete the registration/purchase - \n'+redirect_url); if(true == redirect_confirm) { jQuery('#adminForm').attr('action', redirect_url); jQuery("input[name=task]").prop( "disabled", true ); jQuery("input[name=install_directory]").prop( "disabled", true ); jQuery("input[name=install_url]").prop( "disabled", true ); jQuery("input[name=installtype]").prop( "disabled", true ); jQuery("input[name=filter_search]").prop( "disabled", true ); return true; } return false; } Joomla.installfromweb = function(install_url, name) { if ('' == install_url) { alert("This extension cannot be installed via the web. Please visit the developer's website to purchase/download."); return false; } jQuery('#install_url').val(install_url); jQuery('#uploadform-web-url').text(install_url); if (name) { jQuery('#uploadform-web-name').text(name); jQuery('#uploadform-web-name-label').show(); } else { jQuery('#uploadform-web-name-label').hide(); } jQuery('#jed-container').slideUp(300); jQuery('#uploadform-web').show(); return true; } Joomla.installfromwebcancel = function() { jQuery('#uploadform-web').hide(); jQuery('#jed-container').slideDown(300); if (Joomla.apps.list) { jQuery(".list-view").click(); } } Joomla.installfromwebajaxsubmit = function() { var tail = '&view='+Joomla.apps.view; if (Joomla.apps.id) { tail += '&id='+Joomla.apps.id; } if (jQuery('#com-apps-searchbox').val()) { var value = encodeURI(jQuery('#com-apps-searchbox').val().toLowerCase().replace(/ +/g,'_').replace(/[^a-z0-9-_]/g,'').trim()); tail += '&filter_search='+value; } var ordering = Joomla.apps.ordering; if (ordering !== "" && jQuery('#com-apps-ordering').val()) { ordering = jQuery('#com-apps-ordering').val(); } if (ordering) { tail += '&ordering='+ordering; } Joomla.loadweb(apps_base_url+'index.php?format=json&option=com_apps'+tail); } Joomla.apps.clickforlinks = function () { jQuery('a.transcode').each(function(index, value) { var ajaxurl = jQuery(this).attr('href'); (function() { var ajax_url = ajaxurl; jQuery(value).live('click', function(event){ var pattern1 = new RegExp(apps_base_url); var pattern2 = new RegExp("^index\.php"); if (pattern1.test(ajax_url) || pattern2.test(ajax_url)) { Joomla.apps.view = ajax_url.replace(/^.+[&\?]view=(\w+).*$/, '$1'); if (Joomla.apps.view == 'dashboard') { Joomla.apps.id = 0; } else if (Joomla.apps.view == 'category') { Joomla.apps.id = ajax_url.replace(/^.+[&\?]id=(\d+).*$/, '$1'); } event.preventDefault(); Joomla.loadweb(apps_base_url + ajax_url); } else { event.preventDefault(); Joomla.loadweb(ajax_url); } }); })(); jQuery(this).attr('href', '#'); }); } Joomla.apps.initialize = function() { Joomla.apps.loaded = 1; if (jQuery('#myTabContent').length) { jQuery('<div id="appsloading"></div>') .css("background", "rgba(255, 255, 255, .8) url('../media/jui/img/ajax-loader.gif') 50% 15% no-repeat") .css("top", jQuery('#myTabContent').position().top - jQuery(window).scrollTop()) .css("left", jQuery('#myTabContent').position().left - jQuery(window).scrollLeft()) .css("width", jQuery('#myTabContent').width()) .css("height", jQuery('#myTabContent').height()) .css("position", "fixed") .css("z-index", "1000") .css("opacity", "0.80") .css("-ms-filter", "progid:DXImageTransform.Microsoft.Alpha(Opacity = 80)") .css("filter", "alpha(opacity = 80)") .appendTo('#myTabContent'); jQuery('#appsloading').ajaxStart(function() { jQuery(this).show(); }).ajaxStop(function() { jQuery(this).hide(); }); } Joomla.loadweb(apps_base_url+'index.php?format=json&option=com_apps&view=dashboard'); Joomla.apps.clickforlinks(); jQuery('#com-apps-searchbox').live('keypress', function(event){ if(event.which == 13) { Joomla.apps.initiateSearch(); } }); jQuery('#search-reset').live('click', function(event){ jQuery('#com-apps-searchbox').val(''); Joomla.apps.initiateSearch(); }); jQuery('#com-apps-ordering').live('change', function(event){ Joomla.apps.ordering = jQuery(this).prop("selectedIndex"); Joomla.installfromwebajaxsubmit(); }); if (apps_installfrom_url != '') { Joomla.installfromweb(apps_installfrom_url); } } Joomla.apps.initiateSearch = function() { Joomla.apps.view = 'dashboard'; Joomla.installfromwebajaxsubmit(); } Joomla.apps.clicker = function() { jQuery(".grid-view").live("click",function() { Joomla.apps.list = 0; jQuery(".list-container").addClass("hidden"); jQuery(".grid-container").removeClass("hidden"); jQuery("#btn-list-view").removeClass("active"); jQuery("#btn-grid-view").addClass("active"); }); jQuery(".list-view").live("click",function() { Joomla.apps.list = 1; jQuery(".grid-container").addClass("hidden"); jQuery(".list-container").removeClass("hidden"); jQuery("#btn-grid-view").removeClass("active"); jQuery("#btn-list-view").addClass("active"); }); } Joomla.submitbutton5 = function(pressbutton) { var form = document.getElementById('adminForm'); // do field validation if (form.install_url.value != "" && form.install_url.value != "http://") { Joomla.submitbutton4(); } else if (form.install_url.value == "") { alert(apps_btntxt); } else { if (!apps_is_hathor) { jQuery('#appsloading').css('display', 'block'); } form.installtype.value = 'web'; form.submit(); } }