Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/vendor/bower-asset/yii2-pjax/test/ |
Upload File : |
require 'sinatra' require 'json' set :public_folder, File.dirname(settings.root) enable :static jquery_version = '3.2' helpers do def pjax? env['HTTP_X_PJAX'] && !params[:layout] end def title(str) if pjax? "<title>#{str}</title>" else @title = str nil end end define_method(:jquery_version) do jquery_version end end after do if pjax? response.headers['X-PJAX-URL'] ||= request.url response.headers['X-PJAX-Version'] = 'v1' end end get '/' do jquery_version = params[:jquery] if params[:jquery] erb :qunit end get '/env.html' do erb :env, :layout => !pjax? end post '/env.html' do erb :env, :layout => !pjax? end put '/env.html' do erb :env, :layout => !pjax? end delete '/env.html' do erb :env, :layout => !pjax? end get '/redirect.html' do if params[:anchor] path = "/hello.html##{params[:anchor]}" if pjax? response.headers['X-PJAX-URL'] = uri(path) status 200 else redirect path end else redirect "/hello.html" end end get '/timeout.html' do if pjax? sleep 1 erb :timeout, :layout => false else erb :timeout end end post '/timeout.html' do if pjax? sleep 1 erb :timeout, :layout => false else status 500 erb :boom end end get '/boom.html' do status 500 erb :boom, :layout => !pjax? end get '/boom_sans_pjax.html' do status 500 erb :boom_sans_pjax, :layout => false end get '/:page.html' do erb :"#{params[:page]}", :layout => !pjax? end get '/some-&-path/hello.html' do erb :hello, :layout => !pjax? end