Gnieark 7 years ago
parent 033ce08abb
commit 7a81109006

@ -14,7 +14,7 @@ Ce module permet de la coloration syntaxique lors de la citation de codes dans u
# Code tiers
Minifier class was made by Tedious https://github.com/tedious/JShrink BSD License.
# Modifications apportées par ce Fork:
# Modifications apportées:
Le plugin Yash insère plusieurs appels à des scripts javascripts, et ajoute des variables JS dans le footer de la page.
Yash3 concatène tout ça pour ne mettre qu'un seul script en référence.

@ -44,7 +44,7 @@ if (is_null($core->blog->settings->yash3->yash3_active)) {
// Getting current parameters
$active = (boolean)$core->blog->settings->yash3->yash3_active;
$theme = (string)$core->blog->settings->yash3->yash3_theme;
$custom_css = (string)$core->blog->settings->yash3->yash3_custom_css;
$customCss = (string)$core->blog->settings->yash3->yash3_custom_css;
if (!empty($_REQUEST['popup'])) {
$yash3_brushes = array(
@ -105,10 +105,10 @@ if (!empty($_POST['saveconfig'])) {
$core->blog->settings->addNameSpace('yash3');
$active = (empty($_POST['active'])) ? false : true;
$theme = (empty($_POST['theme'])) ? 'Default' : $_POST['theme'];
$custom_css = (empty($_POST['custom_css'])) ? '' : html::sanitizeURL($_POST['custom_css']);
$customCss = (empty($_POST['customCss'])) ? '' : $_POST['customCss'];
$core->blog->settings->yash3->put('yash3_active',$active,'boolean');
$core->blog->settings->yash3->put('yash3_theme',$theme,'string');
$core->blog->settings->yash3->put('yash3_custom_css',$custom_css,'string');
$core->blog->settings->yash3->put('yash3_custom_css',$customCss,'string');
$new_concat_version = (integer)$core->blog->settings->yash3->yash3_concat_version + 1;
@ -166,11 +166,11 @@ if (!empty($_POST['saveconfig'])) {
file_get_contents($cssPathFile);
// Remove comments
//$fContent = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $fContent);
$fContent = preg_replace('!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $fContent);
// Remove space after colons
//$fContent = str_replace(': ', ':', $fContent);
$fContent = str_replace(': ', ':', $fContent);
// Remove whitespace
//$fContent = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $fContent);
$fContent = str_replace(array("\r\n", "\r", "\n", "\t", ' ', ' ', ' '), '', $fContent);
//create the file
file_put_contents( $cssFutureFileRealPath, $fContent );
@ -208,6 +208,23 @@ if (!empty($_POST['saveconfig'])) {
<html>
<head>
<title><?php echo __('YASH3'); ?></title>
<script type="text/javascript">
//I hate jquery
$(document).ready(function(){
$("select").change(function(){
$(this).find("option:selected").each(function(){
if($(this).attr("value")=="Custom"){
$(".hidden").show();
}else{
$(".hidden").hide();
}
});
}).change();
});
</script>
</head>
<body>
@ -221,6 +238,7 @@ echo dcPage::notices();
$combo_theme = array(
__('Default') => 'Default',
__('Css personnalisé') => 'Custom',
__('Django') => 'Django',
__('Eclipse') => 'Eclipse',
__('Emacs') => 'Emacs',
@ -246,13 +264,12 @@ $combo_theme = array(
<p class="field"><label for="theme" class="classic"><?php echo __('Theme:'); ?> </label>
<?php echo form::combo('theme',$combo_theme,$theme); ?>
</p>
<p class="field">
<p class="field hidden">
<label for="custom_css" class="classic"><?php echo __('Use custom CSS:') ; ?> </label>
<?php echo form::field('custom_css',40,128,$custom_css); ?>
<?php echo form::textarea('customCss',80,20, $customCss); ?>
</p>
<p class="info">
<?php echo __('You can use a custom CSS by providing its location.'); ?><br />
<?php echo __('A location beginning with a / is treated as absolute, else it is treated as relative to the blog\'s current theme URL'); ?>
<?php echo __('You can use a custom CSS. Paste it on the textarea'); ?>
</p>
<p><input type="hidden" name="p" value="yash3" />
@ -261,6 +278,5 @@ $combo_theme = array(
</p>
</form>
</div>
</body>
</html>
Loading…
Cancel
Save