Skip to content
Extraits de code Groupes Projets
Valider 6624e27e rédigé par Julien Moumné's avatar Julien Moumné
Parcourir les fichiers

fixes #4373, #1640

parent 5d44202f
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Affichage de
avec 797 ajouts et 26 suppressions
/* Piwik Javascript - cb={{{CACHE-BUSTER-JS}}}*/
if(typeof SimpleObject!=='object'){SimpleObject=(function(){var privateVar;function privateMethod(param){privateVar=param;}
return{publicMethod:function(){privateMethod('val');}}}());}
var simpleArray=['el1','el2'];
//This is a simple comment// customization via event
\ No newline at end of file
/* Piwik Javascript - cb={{{CACHE-BUSTER-JS}}}*/
alert('test');
\ No newline at end of file
alert('test');
\ No newline at end of file
var simpleArray = ['el1', 'el2'];
//This is a simple comment
\ No newline at end of file
if (typeof SimpleObject !== 'object') {
SimpleObject = (function () {
var privateVar;
function privateMethod(param) {
privateVar = param;
}
return {
publicMethod: function () {
privateMethod('val');
}
}
}());
}
h1 {
color: orange;
text-align: center;
/* url relative to root: must not be rewritten*/
background: url(tests/PHPUnit/Core/AssetManager/stylesheets/images/test-image.png);
}
p {
font-size: 20px;
/* url relative to file: must be rewritten*/
background: url(images/test-image.png);
}
\ No newline at end of file
/* compile_me_once={{{CACHE-BUSTER-JS}}} */
/* Piwik CSS file is compiled with Less. You may be interested in writing a custom Theme for Piwik! */
#page #header {
color: white;
}
#footer {
color: red;
}
.box {
color: #fe33ac;
border-color: #fdcdea;
}
.box div {
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.3);
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.3);
box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
h1 {
color: orange;
text-align: center;
background: url(tests/PHPUnit/Core/AssetManager/stylesheets/images/test-image.png);
}
p {
font-size: 20px;
background: url(tests/PHPUnit/Core/AssetManager/stylesheets/images/test-image.png);
}
body {
background-color: #b0c4de;
}
/* customization via event */
\ No newline at end of file
@var: red;
#page {
@var: white;
#header {
color: @var;
}
}
#footer {
color: @var;
}
\ No newline at end of file
body {
background-color:#b0c4de;
}
\ No newline at end of file
@import "ImportedLess";
@base: #f938ab;
.box-shadow(@style, @c) when (iscolor(@c)) {
-webkit-box-shadow: @style @c;
-moz-box-shadow: @style @c;
box-shadow: @style @c;
}
.box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) {
.box-shadow(@style, rgba(0, 0, 0, @alpha));
}
.box {
color: saturate(@base, 5%);
border-color: lighten(@base, 30%);
div { .box-shadow(0 0 5px, 30%) }
}
Le fichier a été supprimé par une entrée .gitattributes, ou son encodage n'est pas pris en charge.
Ce diff est replié.
...@@ -477,8 +477,7 @@ class Test_Piwik_ServeStaticFile extends PHPUnit_Framework_TestCase ...@@ -477,8 +477,7 @@ class Test_Piwik_ServeStaticFile extends PHPUnit_Framework_TestCase
private function getCompressedFileLocation() private function getCompressedFileLocation()
{ {
$path = PIWIK_PATH_TEST_TO_ROOT . \Piwik\AssetManager::COMPRESSED_FILE_LOCATION . basename(TEST_FILE_LOCATION); return \Piwik\AssetManager::getInstance()->getAssetDirectory() . '/' . basename(TEST_FILE_LOCATION);
return \Piwik\SettingsPiwik::rewriteTmpPathWithHostname($path);
} }
private function removeCompressedFiles() private function removeCompressedFiles()
......
Subproject commit cbf0922b352e6592076908ee1fab095cd8e0642c Subproject commit 673d21c6a750d8280f4e9ab9d203072dd8d844d2
...@@ -49,7 +49,7 @@ abstract class UITest extends IntegrationTestCase ...@@ -49,7 +49,7 @@ abstract class UITest extends IntegrationTestCase
DbHelper::createAnonymousUser(); DbHelper::createAnonymousUser();
AssetManager::removeMergedAssets(); AssetManager::getInstance()->removeMergedAssets();
// launch archiving so tests don't run out of time // launch archiving so tests don't run out of time
Rules::$purgeDisabledByTests = true; Rules::$purgeDisabledByTests = true;
......
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