Skip to content
Snippets Groups Projects
Commit d8d7f885 authored by Ere Maijala's avatar Ere Maijala Committed by Demian Katz
Browse files

Fix CSS problems in asset pipeline (#957)

- Add a path converter to make any css files minified by the asset pipeline use correct paths for any relative url(…) directives.
parent 8749bb41
No related merge requests found
<?php
/**
* CSS minifier extension
*
* PHP version 5
*
* Copyright (C) The National Library of Finland 2017.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @category VuFind
* @package View_Helpers
* @author Ere Maijala <ere.maijala@helsinki.fi>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFindTheme\Minify;
/**
* CSS minifier extensions
*
* @category VuFind
* @package View_Helpers
* @author Ere Maijala <ere.maijala@helsinki.fi>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development:testing:unit_tests Wiki
*/
class CSS extends \MatthiasMullie\Minify\CSS
{
/**
* Return a converter to update relative paths to be relative to the new
* destination.
*
* @param string $source Source path
* @param string $target Target path
*
* @return \MatthiasMullie\PathConverter\ConverterInterface
*/
protected function getPathConverter($source, $target)
{
return new PathConverter($source, $target);
}
}
<?php
/**
* CSS path converter extension
*
* PHP version 5
*
* Copyright (C) The National Library of Finland 2017.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @category VuFind
* @package View_Helpers
* @author Ere Maijala <ere.maijala@helsinki.fi>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
namespace VuFindTheme\Minify;
/**
* CSS path converter extension
*
* @category VuFind
* @package View_Helpers
* @author Ere Maijala <ere.maijala@helsinki.fi>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development Wiki
*/
class PathConverter extends \MatthiasMullie\PathConverter\Converter
{
/**
* Normalize path.
*
* @param string $path Path
*
* @return string
*/
protected function normalize($path)
{
$path = parent::normalize($path);
$path = str_replace('/local/cache/public', '/cache', $path);
return $path;
}
}
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* @package View_Helpers * @package View_Helpers
* @author Demian Katz <demian.katz@villanova.edu> * @author Demian Katz <demian.katz@villanova.edu>
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License * @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License
* @link https://vufind.org/wiki/development:testing:unit_tests Wiki * @link https://vufind.org/wiki/development Wiki
*/ */
namespace VuFindTheme\View\Helper; namespace VuFindTheme\View\Helper;
use VuFindTheme\ThemeInfo; use VuFindTheme\ThemeInfo;
......
...@@ -203,6 +203,6 @@ class HeadLink extends \Zend\View\Helper\HeadLink ...@@ -203,6 +203,6 @@ class HeadLink extends \Zend\View\Helper\HeadLink
*/ */
protected function getMinifier() protected function getMinifier()
{ {
return new \MatthiasMullie\Minify\CSS(); return new \VuFindTheme\Minify\CSS();
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment