����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.128.188.69 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admin/assets/plugins/DataTables/media/unit_testing/ |
Upload File : |
<?php header( 'Expires: Sat, 26 Jul 1997 05:00:00 GMT' ); header( 'Last-Modified: ' . gmdate( 'D, d M Y H:i:s' ) . ' GMT' ); header( 'Cache-Control: no-store, no-cache, must-revalidate' ); header( 'Cache-Control: post-check=0, pre-check=0', false ); header( 'Pragma: no-cache' ); ?><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"> <title>DataTables unit test controller</title> <style type="text/css" media="screen"> #controller { font: 12px/1.45em "Lucida Grande", Verdana, Arial, Helvetica, sans-serif; margin: 0; padding: 0 0 0 0.5em; color: #333; background-color: #fff; } #test_info { position: absolute; top: 0; right: 0; width: 50%; height: 100%; font-size: 11px; overflow: auto; } .error { color: red; } #controller h1 { color: #4E6CA3; font-size: 18px; } </style> <script type="text/javascript" language="javascript" src="../js/jquery.js"></script> <script type="text/javascript" charset="utf-8"> var gaoTest = [ <?php function fnReadDir( &$aReturn, $path ) { $rDir = opendir( $path ); while ( ($file = readdir($rDir)) !== false ) { if ( $file == "." || $file == ".." || $file == ".DS_Store" ) { continue; } else if ( is_dir( $path.'/'.$file ) ) { fnReadDir( $aReturn, $path.'/'.$file ); } else { array_push( $aReturn, $path.'/'.$file ); } } closedir($rDir); } /* Get the tests dynamically from the 'tests' directory, and their templates */ $aFiles = array(); fnReadDir( $aFiles, "tests" ); for ( $i=0 ; $i<count($aFiles) ; $i++ ) { $sTemplate; $fp = fopen( $aFiles[$i], "r" ); fscanf( $fp, "// DATA_TEMPLATE: %s", $sTemplate ); fclose( $fp ); $aPath = explode('/', $aFiles[$i]); echo '{ '. '"sTemplate": "'.$sTemplate.'", '. '"sTest": "'.$aFiles[$i].'", '. '"sGroup": "'.$aPath[1].'"},'."\n"; } ?> null ]; gaoTest.pop(); /* No interest in the null */ </script> <script type="text/javascript" language="javascript" src="controller.js"></script> </head> <body id="controller"> <h1>DataTables unit testing</h1> <div id="test_running">Running test: <span id="test_number"></span></div> <div id="test_info"> <b>Test information:</b><br> </div> </body> </html>