Menu

[r5]: / css_optimiser.php  Maximize  Restore  History

Download this file

358 lines (326 with data), 15.3 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
<?php
ini_set('display_errors','On');
set_magic_quotes_runtime(0);
require('css_parser.php');
require('lang.inc.php');
header('Content-Type:text/html; charset=utf-8');
function rmdirr($dirname,$oc=0)
{
// Sanity check
if (!file_exists($dirname)) {
return false;
}
// Simple delete for a file
if (is_file($dirname) && (time()-fileatime($dirname))>3600) {
return unlink($dirname);
}
// Loop through the folder
if(is_dir($dirname))
{
$dir = dir($dirname);
while (false !== $entry = $dir->read()) {
// Skip pointers
if ($entry == '.' || $entry == '..') {
continue;
}
// Recurse
rmdirr("$dirname/$entry",$oc);
}
$dir->close();
}
// Clean up
if ($oc==1)
{
return rmdir($dirname);
}
}
function options($array_options,$string_selected,$array_values = FALSE)
{
$return = '';
foreach($array_options as $key => $option)
{
if($option === $string_selected)
{
$return .= '<option';
if($array_values !== FALSE) $return .= ' value="'.$array_values[$key].'"';
$return .= ' selected="selected">'.$option.'</option>';
}
else
{
$return .= '<option';
if($array_values !== FALSE) $return .= ' value="'.$array_values[$key].'" ';
$return .= '>'.$option.'</option>';
}
}
return $return;
}
$css = new csstidy();
if(isset($_REQUEST['custom']) && !empty($_REQUEST['custom']))
{
setcookie ('custom_template', $_REQUEST['custom'], time()+360000);
}
rmdirr('temp');
if(isset($_REQUEST['lowercase_p']) && $_REQUEST['lowercase_p'] == 'upper') $css->set_cfg('uppercase_properties',TRUE);
if(isset($_REQUEST['lowercase'])) $css->set_cfg('lowercase_s',TRUE);
if(!isset($_REQUEST['compress_c']) && isset($_REQUEST['post'])) $css->set_cfg('compress_colors',FALSE);
if(!isset($_REQUEST['compress_fw']) && isset($_REQUEST['post'])) $css->set_cfg('compress_font-weight',FALSE);
if(!isset($_REQUEST['merge_selectors'])) {
$css->set_cfg('merge_selectors', 2);
} else {
$css->set_cfg('merge_selectors', $_REQUEST['merge_selectors']);
}
if(!isset($_REQUEST['optimise_shorthands']) && isset($_REQUEST['post'])) $css->set_cfg('optimise_shorthands',FALSE);
if(!isset($_REQUEST['only_safe_optimisations']) && isset($_REQUEST['post'])) $css->set_cfg('only_safe_optimisations',FALSE);
if(isset($_REQUEST['ie_hack'])) $css->set_cfg('save_ie_hacks',TRUE);
if(!isset($_REQUEST['rbs']) && isset($_REQUEST['post'])) $css->set_cfg('remove_bslash',FALSE);
if(isset($_REQUEST['sort_sel'])) $css->set_cfg('sort_selectors',TRUE);
if(isset($_REQUEST['sort_de'])) $css->set_cfg('sort_properties',TRUE);
if(isset($_REQUEST['save_comments'])) $css->set_cfg('save_comments',TRUE);
if(isset($_REQUEST['remove_last_sem'])) $css->set_cfg('remove_last_;',TRUE);
if(isset($_REQUEST['discard'])) $css->set_cfg('discard_invalid_properties',TRUE);
if(isset($_REQUEST['css_level'])) $css->set_cfg('css_level',$_REQUEST['css_level']);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>
<?php echo $lang[$l][0]; echo $css->version; ?>)
</title>
<meta http-equiv="Content-Type"
content="application/xhtml+xml; charset=utf-8" />
<link rel="stylesheet" href="cssparse.css" type="text/css" />
</head>
<body>
<div><h1 style="display:inline">
<?php echo $lang[$l][1]; ?>
</h1>
<?php echo $lang[$l][2]; ?> <a
href="http://csstidy.sourceforge.net/">csstidy</a> <?php echo $css->version; ?>)
</div><p>
<?php echo $lang[$l][39]; ?>: <a hreflang="en" href="?lang=en">English</a> <a hreflang="de" href="?lang=de">Deutsch</a> <a hreflang="fr" href="?lang=fr">French</a></p>
<p><?php echo $lang[$l][4]; ?></p>
<ul>
<li>
<?php echo $lang[$l][5]; ?>
</li>
<li>
<?php echo $lang[$l][6]; ?>
</li>
</ul>
<form method="post" action="">
<div>
<fieldset id="field_input">
<legend><?php echo $lang[$l][8]; ?></legend> <label for="css_text"
class="block"><?php echo $lang[$l][9]; ?></label><textarea id="css_text" name="css_text" rows="20" cols="35"><?php if(isset($_REQUEST['css_text'])) echo htmlspecialchars($_REQUEST['css_text']); ?></textarea>
<label for="url"><?php echo $lang[$l][10]; ?></label> <input type="text"
name="url" id="url" <?php if(isset($_REQUEST['url']) &&
!empty($_REQUEST['url'])) echo 'value="'.$_REQUEST['url'].'"'; ?>
size="35" /><br />
<input type="submit" value="<?php echo $lang[$l][35]; ?>" id="submit" />
</fieldset>
<div id="rightcol">
<fieldset id="code_layout">
<legend><?php echo $lang[$l][11]; ?></legend> <label for="template"
class="block"><?php echo $lang[$l][12]; ?></label> <select
id="template" name="template" style="margin-bottom:1em;">
<?php if(isset($_REQUEST['template']) &&
is_numeric($_REQUEST['template'])) $num = $_REQUEST['template']; else
$num = 1; ?>
<option value="3" <?php if($num==3) echo 'selected="selected"';
?>>
<?php echo $lang[$l][13]; ?>
</option>
<option value="2" <?php if($num==2) echo 'selected="selected"';
?>>
<?php echo $lang[$l][14]; ?>
</option>
<option value="1" <?php if($num==1) echo 'selected="selected"';
?>>
<?php echo $lang[$l][15]; ?>
</option>
<option value="0" <?php if($num==0) echo 'selected="selected"';
?>>
<?php echo $lang[$l][16]; ?>
</option>
<option value="4" <?php if($num==4) echo 'selected="selected"';
?>>
<?php echo $lang[$l][17]; ?>
</option>
</select><br />
<label for="custom" class="block">
<?php echo $lang[$l][18]; ?> </label> <textarea id="custom"
name="custom" cols="33" rows="4"><?php
if(isset($_REQUEST['custom']) && !empty($_REQUEST['custom'])) echo
htmlspecialchars($_REQUEST['custom']);
elseif(isset($_COOKIE['custom_template']) &&
!empty($_COOKIE['custom_template'])) echo
htmlspecialchars($_COOKIE['custom_template']);
?></textarea>
</fieldset>
<fieldset id="options">
<legend><?php echo $lang[$l][19]; ?></legend>
<input type="checkbox" name="sort_sel" id="sort_sel"
<?php if($css->get_cfg('sort_selectors')) echo 'checked="checked"'; ?> />
<label for="sort_sel" title="<?php echo $lang[$l][41]; ?>" class="help"><?php echo $lang[$l][20]; ?></label><br />
<input type="checkbox" name="sort_de" id="sort_de"
<?php if($css->get_cfg('sort_properties')) echo 'checked="checked"'; ?> />
<label for="sort_de"><?php echo $lang[$l][21]; ?></label><br />
<label for="merge_selectors"><?php echo $lang[$l][22]; ?></label>
<div id="merge_selectors">
<input type="radio" title="<?php echo $lang[$l][47]; ?>" name="merge_selectors" id="ms0" value="0"
<?php if($css->get_cfg('merge_selectors') == 0) echo 'checked="checked"'; ?>/><label for="ms0">0</label>
<input type="radio" title="<?php echo $lang[$l][48]; ?>" name="merge_selectors" id="ms1" value="1"
<?php if($css->get_cfg('merge_selectors') == 1) echo 'checked="checked"'; ?>/><label for="ms1">1</label>
<input type="radio" title="<?php echo $lang[$l][49]; ?>" name="merge_selectors" id="ms2" value="2"
<?php if($css->get_cfg('merge_selectors') == 2) echo 'checked="checked"'; ?>/><label for="ms2">2</label>
<input type="radio" title="<?php echo $lang[$l][50]; ?>" name="merge_selectors" id="ms3" value="3"
<?php if($css->get_cfg('merge_selectors') == 3) echo 'checked="checked"'; ?>/><label for="ms3">3</label>
<a href="http://csstidy.sourceforge.net/merge_selectors.php" style="cursor:help;">(?)</a>
</div>
<input type="checkbox" name="optimise_shorthands" id="optimise_shorthands"
<?php if($css->get_cfg('optimise_shorthands')) echo 'checked="checked"'; ?> />
<label for="optimise_shorthands"><?php echo $lang[$l][23]; ?></label><br />
<input type="checkbox" name="only_safe_optimisations" id="only_safe_optimisations"
<?php if($css->get_cfg('only_safe_optimisations')) echo 'checked="checked"'; ?> />
<label for="only_safe_optimisations"><?php echo $lang[$l][44]; ?></label><br />
<input type="checkbox" name="compress_c" id="compress_c"
<?php if($css->get_cfg('compress_colors')) echo 'checked="checked"';?> />
<label for="compress_c"><?php echo $lang[$l][24]; ?></label><br />
<input type="checkbox" name="compress_fw" id="compress_fw"
<?php if($css->get_cfg('compress_font-weight')) echo 'checked="checked"';?> />
<label for="compress_fw"><?php echo $lang[$l][45]; ?></label><br />
<input type="checkbox" name="lowercase" id="lowercase" value="lowercase"
<?php if($css->get_cfg('lowercase_s')) echo 'checked="checked"'; ?> />
<label title="<?php echo $lang[$l][30]; ?>" class="help" for="lowercase"><?php echo $lang[$l][25]; ?></label><br />
<?php echo $lang[$l][26]; ?><br />
<input type="radio" name="lowercase_p" id="lower_yes" value="lower"
<?php if(!$css->get_cfg('uppercase_properties')) echo 'checked="checked"'; ?> />
<label for="lower_yes"><?php echo $lang[$l][27]; ?></label>
<input type="radio" name="lowercase_p" id="lower_no" value="upper"
<?php if($css->get_cfg('uppercase_properties')) echo 'checked="checked"'; ?> />
<label for="lower_no"><?php echo $lang[$l][29]; ?></label><br />
<input type="checkbox" name="rbs" id="rbs"
<?php if($css->get_cfg('remove_bslash')) echo 'checked="checked"'; ?> />
<label for="rbs"><?php echo $lang[$l][31]; ?></label><br />
<input type="checkbox" name="ie_hack" id="ie_hack"
<?php if($css->get_cfg('save_ie_hacks')) echo 'checked="checked"'; ?> />
<label for="ie_hack"><?php echo $lang[$l][32]; ?></label><br />
<input type="checkbox" id="remove_last_sem" name="remove_last_sem"
<?php if($css->get_cfg('remove_last_;')) echo 'checked="checked"'; ?> />
<label for="remove_last_sem"><?php echo $lang[$l][42]; ?></label><br />
<input type="checkbox" id="save_comments" name="save_comments"
<?php if($css->get_cfg('save_comments')) echo 'checked="checked"'; ?> />
<label for="save_comments"><?php echo $lang[$l][46]; ?></label><br />
<input type="checkbox" id="discard" name="discard"
<?php if($css->get_cfg('discard_invalid_properties')) echo 'checked="checked"'; ?> />
<label for="discard"><?php echo $lang[$l][43]; ?></label>
<select name="css_level"><?php echo options(array('CSS2.1','CSS2.0','CSS1.0'),$css->get_cfg('css_level')); ?></select><br />
<input type="checkbox" name="file_output" id="file_output" value="file_output"
<?php if(isset($_REQUEST['file_output'])) echo 'checked="checked"'; ?> />
<label class="help" title="<?php echo $lang[$l][34]; ?>" for="file_output">
<strong><?php echo $lang[$l][33]; ?></strong>
</label><br />
</fieldset>
<input type="hidden" name="post" />
</div>
</div>
</form>
<?php
$file_ok = FALSE;
$result = FALSE;
if(isset($_REQUEST['url']) && !empty($_REQUEST['url']))
{
$url = $_REQUEST['url'];
}
else
{
$url = FALSE;
}
if(isset($_REQUEST['template']))
{
switch($_REQUEST['template'])
{
case 4:
if(isset($_REQUEST['custom']) && !empty($_REQUEST['custom']))
{
$css->load_template($_REQUEST['custom'],FALSE);
}
break;
case 3:
$css->load_template('highest_compression');
break;
case 2:
$css->load_template('high_compression');
break;
case 0:
$css->load_template('low_compression');
break;
}
}
if($url)
{
if(substr($_REQUEST['url'],0,7) != 'http://')
{
$_REQUEST['url'] = 'http://'.$_REQUEST['url'];
}
$result = $css->parse_from_url($_REQUEST['url'],0);
}
elseif(isset($_REQUEST['css_text']) && strlen($_REQUEST['css_text'])>5)
{
$result = $css->parse($_REQUEST['css_text']);
}
if($result)
{
$ratio = $css->get_ratio();
$diff = $css->get_diff();
if(isset($_REQUEST['file_output']))
{
$filename = md5(mt_rand().mt_rand());
$handle = fopen('temp/'.$filename.'.css','w');
if($handle) {
if(fwrite($handle,$css->output_css_plain))
{
$file_ok = TRUE;
}
}
fclose($handle);
}
if($ratio>0) $ratio = '<span style="color:green;">'.$ratio.'%</span>
('.$diff.' Bytes)'; else $ratio = '<span
style="color:red;">'.$ratio.'%</span> ('.$diff.' Bytes)';
if(count($css->log) > 0): ?>
<fieldset id="messages"><legend>Messages</legend>
<div><dl><?php
foreach($css->log as $line => $array)
{
echo '<dt>'.$line.'</dt>';
for($i = 0; $i < count($array); $i++)
{
echo '<dd class="'.$array[$i]['t'].'">'.$array[$i]['m'].'</dd>';
}
}
?></dl></div>
</fieldset>
<?php endif;
echo '<fieldset><legend>'.$lang[$l][37].': '.$css->size('input').'KB, '.$lang[$l][38].':
'.$css->size('output').'KB, '.$lang[$l][36].': '.$ratio;
if($file_ok)
{
echo ' - <a href="temp/'.$filename.'.css">Download</a>';
}
echo '</legend>';
echo '<pre><code>';
echo $css->output_css;
echo '</code></pre>';
echo '</fieldset>';
}
elseif(isset($_REQUEST['css_text']) || isset($_REQUEST['url'])) echo '<p
class="important">'.$lang[$l][28].'</p>';
?>
<p style="text-align:center;font-size:0.8em;clear:both;">
For bugs and suggestions feel free to <a
href="mailto:floele - at - gmail . com">contact me</a>.
</p>
</body>
</html>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.