Skip to content
Extraits de code Groupes Projets
Valider dcc553f9 rédigé par robocoder's avatar robocoder
Parcourir les fichiers

Move hard-coded AJAX library version numbers from Smarty plugin to...

Move hard-coded AJAX library version numbers from Smarty plugin to global.ini.php; check for AJAX library version inconsistency in ReleaseCheckList


git-svn-id: http://dev.piwik.org/svn/trunk@1500 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent fbc3cc8b
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -131,6 +131,10 @@ datatable_archiving_maximum_rows_subtable_actions = 100
; If set to 1, Piwik uses a Content Distribution Network
use_ajax_cdn = 0
; required AJAX library versions
jquery_version = 1.2.6
swfobject_version = 2.2
[Tracker]
; set to 0 if you want to stop tracking the visitors. Useful if you need to stop all the connections on the DB.
record_statistics = 1
......
......@@ -253,7 +253,7 @@ abstract class Piwik_Controller
$view->maxDateDay = $maxDate->toString('d');
$view->debugTrackVisitsInsidePiwikUI = Zend_Registry::get('config')->Debug->track_visits_inside_piwik_ui;
} catch(Exception $e) {
self::redirectToIndex(Piwik::getModule(), Piwik::getAction());
}
......
......@@ -34,16 +34,17 @@ function smarty_outputfilter_ajaxcdn($source, &$smarty)
return $source;
}
$jquery_version = Zend_Registry::get('config')->General->jquery_version;
$swfobject_version = Zend_Registry::get('config')->General->swfobject_version;
$pattern = array(
'~<script type="text/javascript" src="libs/jquery/jquery\.js([^"]*)">~',
'~<script type="text/javascript" src="libs/jquery/jqueryui\.js([^"]*)">~',
'~<script type="text/javascript" src="libs/swfobject/swfobject\.js([^"]*)">~',
);
$replace = array(
'<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js">',
'<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js">',
'<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js">',
'<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/'.$jquery_version.'/jquery.min.js">',
'<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/'.$swfobject_version.'/swfobject.js">',
);
return preg_replace($pattern, $replace, $source);
......
......@@ -62,7 +62,7 @@ class Piwik_View implements Piwik_iView
$this->smarty->load_filter('output', 'ajaxcdn');
$this->smarty->load_filter('output', 'trimwhitespace');
}
// global value accessible to all templates: the piwik base URL for the current request
$this->piwikUrl = Piwik_Url::getCurrentUrlWithoutFileName();
}
......
......@@ -74,5 +74,21 @@ class Test_Piwik_ReleaseCheckList extends UnitTestCase
include PIWIK_PATH_TEST_TO_ROOT . "/piwik.php";
$this->assertTrue($GLOBALS['PIWIK_TRACKER_DEBUG'] === false);
}
function test_ajaxLibraryVersions()
{
Piwik::createConfigObject();
Zend_Registry::get('config')->setTestEnvironment();
Zend_Registry::get('config')->disableSavingConfigurationFileUpdates();
$jqueryJs = file_get_contents( PIWIK_DOCUMENT_ROOT . '/libs/jquery/jquery.js', false, NULL, 0, 512 );
$this->assertTrue( preg_match('/jQuery ([0-9.]+)/', $jqueryJs, $matches) );
$this->assertEqual( $matches[1], Zend_Registry::get('config')->General->jquery_version );
$swfobjectJs = file_get_contents( PIWIK_DOCUMENT_ROOT . '/libs/swfobject/swfobject.js', false, NULL, 0, 512 );
$this->assertTrue( preg_match('/SWFObject v([0-9.]+)/', $swfobjectJs, $matches) );
$this->assertEqual( $matches[1], Zend_Registry::get('config')->General->swfobject_version );
}
}
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter