delft/wiki-skins
Remove unused wiki-skins
Eelco Dolstra committed
Jul 18, 2017 at 17:37 UTC
2f0d49f5243c64e376b1ef3db4c752036fefdecc
52 files changed
-2833
delft/wiki-skins/CHANGELOG
deleted
-20
@@ -1,20 +0,0 @@
1
-== nixos theme release ==
2
-1.0 Joachim Schiele, js@lastlogde
3
- * based on 1.02 clean theme
4
- * see nixos.php on how to use
5
- - see nixos/header.php
6
- - see nixos/footer.php
7
-
8
-== 'clean theme' changelog ==
9
-1.02 Joachim Schiele, js@lastlog.de
10
- * Main repository moved to: https://github.com/qknight/clean
11
- * Fixed PHP tags
12
- * Fixed broken CSS
13
- * Tested to work with php-5.2.14 and php-5.3.6
14
- * License change from '' to 'cc-by-sa/3.0' on 'Kevin Hughes' request:
15
- This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License:
16
- http://creativecommons.org/licenses/by-sa/3.0/
17
-
18
-1.01 Kevin Hughes, kev@kevcom.com
19
- initial release
20
-
delft/wiki-skins/nixos.deps.php
deleted
-9
@@ -1,9 +0,0 @@
1
-<?php
2
-// This file exists to ensure that base classes are preloaded before
3
-// MonoBook.php is compiled, working around a bug in the APC opcode
4
-// cache on PHP 5, where cached code can break if the include order
5
-// changed on a subsequent page view.
6
-// see http://mail.wikipedia.org/pipermail/wikitech-l/2006-January/033660.html
7
-
8
-require_once('includes/SkinTemplate.php');
9
-?>
\ No newline at end of file
delft/wiki-skins/nixos.php
deleted
-417
@@ -1,417 +0,0 @@
1
-<?php
2
-/**
3
- * nixos, a MediaWiki skin
4
- * Version 1.0
5
- * Made for MediaWiki 1.16
6
- * By Joachim Schiele, js@lastlog.de, 14.jun.2011
7
- * Based on 'clean' by Kevin Hughes, kev@kevcom.com, 11/17/2005
8
- * see CHANGELOG
9
- *
10
- * This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License:
11
- * http://creativecommons.org/licenses/by-sa/3.0/
12
- *
13
- * Local settings that affect this skin (in LocalSettings.php):
14
- * $wgDefaultSkin change to "clean" to use as your default skin
15
- * $wgSitename this is displayed as the site name
16
- * $wgLanguageCode this affects the UI language
17
- * $wgGroupPermissions this affects whether or not editing widgets are shown
18
- * $wgRightsPage, etc. this affects the copyright statement in the footer
19
- *
20
- * $wgLogo has no effect on this skin.
21
- *
22
- * Please see:
23
- * - nixos/header.php (this contains the top level links)
24
- * - nixos/footer.php (this contains the 'about us' link)
25
- * both can contain links to a) external pages or b) wiki pages:
26
- * example for a): <li><a href="http://nixos.org/about-us.html">About us</a></li>
27
- * example for b): <li><a href="Demo">Demo</a></li>
28
- *
29
- * @package MediaWiki
30
- * @subpackage Skins
31
- */
32
-
33
-if(!defined('MEDIAWIKI'))
34
- die();
35
-
36
-/** */
37
-require_once('includes/SkinTemplate.php');
38
-
39
-/**
40
- * @package MediaWiki
41
- * @subpackage Skins
42
- */
43
-class SkinNixOS extends SkinTemplate {
44
- function initPage( OutputPage $out ) {
45
- SkinTemplate::initPage( $out );
46
- $this->skinname = 'nixos';
47
- $this->stylename = 'nixos';
48
- $this->template = 'NixOSTemplate';
49
- }
50
-}
51
-
52
-/**
53
- * @package MediaWiki
54
- * @subpackage Skins
55
- */
56
-class NixOSTemplate extends QuickTemplate {
57
-
58
- /**
59
- * @access private
60
- */
61
- function execute() {
62
-
63
- global $wgLanguageCode;
64
- global $wgArticlePath;
65
- global $wgSitename;
66
- global $wgUser;
67
-
68
- wfSuppressWarnings();
69
-
70
- // Set up all needed template variables first!
71
-
72
- $homeLink = htmlspecialchars($this->data['nav_urls']
73
- ['mainpage']['href']);
74
- $isEnglish = false;
75
- if ($wgLanguageCode == "en")
76
- $isEnglish = true;
77
- $canEdit = false;
78
- if ($wgUser->isAllowed('edit'))
79
- $canEdit = true;
80
-
81
- // Set up login text
82
-
83
- $loginText = "";
84
- foreach ($this->data['personal_urls'] as $key => $item) {
85
- $href = htmlspecialchars($item['href']);
86
- $text = htmlspecialchars($item['text']);
87
- $link = "<a href='$href'>$text</a>";
88
- if ($key == "anonlogin" || $key == "logout" ||
89
- $key == "userpage" || $key == "preferences")
90
- $loginText .= $link;
91
- if ($key == "userpage" || $key == "preferences")
92
- $loginText .= " / ";
93
- }
94
- if (!$loginText && !$userpage) {
95
- $text = htmlspecialchars(
96
- $this->translator->translate("userlogin"));
97
- $path = str_replace('$1', "Special:Userlogin", $wgArticlePath);
98
- $loginText = "<a href='$path'>$text</a>";
99
- }
100
-
101
- // Navigation links
102
-
103
- foreach ($this->data['nav_urls'] as $key => $item) {
104
- $href = htmlspecialchars($item['href']);
105
- $text = htmlspecialchars(
106
- $this->translator->translate($key));
107
- if ($key == "upload" && $isEnglish)
108
- $text = "Upload files";
109
- $link = "<a href='$href'>$text</a>";
110
- if ($key == "help")
111
- $helpLink = $link;
112
- if ($key == "recentchanges")
113
- $recentLink = $link;
114
- if ($key == "upload")
115
- $uploadLink = $link;
116
- if ($key == "specialpages")
117
- $specialLink = $link;
118
- if ($key == "recentchangeslinked")
119
- $relatedLink = $link;
120
- }
121
-
122
- // Content action links
123
-
124
- foreach ($this->data['content_actions'] as $key => $item) {
125
- $href = htmlspecialchars($item['href']);
126
- $text = htmlspecialchars($item['text']);
127
- if ($key == "talk" && $isEnglish)
128
- $text = "Discuss";
129
- if ($key == "history" && $isEnglish)
130
- $text = "Changes";
131
- if ($key == "move" && $isEnglish)
132
- $text = "Rename";
133
- if ($key == "nstab-main")
134
- $text = $this->data['title'];
135
- $link = "<a href='$href'>$text</a>";
136
- if ($key == "talk")
137
- $talkLink = $link;
138
- if ($key == "edit")
139
- $editLink = $link;
140
- if ($key == "history")
141
- $historyLink = $link;
142
- if ($key == "protect")
143
- $protectLink = $link;
144
- if ($key == "delete")
145
- $deleteLink = $link;
146
- if ($key == "move")
147
- $moveLink = $link;
148
- if ($key == "watch")
149
- $watchLink = $link;
150
- if ($key == "nstab-main")
151
- $pageLink = $link;
152
- }
153
-
154
- if (!$pageLink)
155
- $pageLink = $this->data['title'];
156
-
157
- $text = htmlspecialchars(
158
- $this->translator->translate("allpages"));
159
- $path = str_replace('$1', "Special:Allpages", $wgArticlePath);
160
- $allLink = "<a href='$path'>$text</a>";
161
-
162
- $searchLabel = htmlspecialchars(
163
- $this->translator->translate("search"));
164
- $newPageLabel = htmlspecialchars(
165
- $this->translator->translate("newpage"));
166
- if ($canEdit)
167
- $moreLabel = htmlspecialchars(
168
- $this->translator->translate("moredotdotdot"));
169
- else
170
- $moreLabel = htmlspecialchars(
171
- $this->translator->translate("qbpageoptions"));
172
- $moreLabel = str_replace("...", "", $moreLabel);
173
-?>
174
-
175
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
176
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php $this->text('lang') ?>" lang="<?php $this->text('lang') ?>" dir="<?php $this->text('dir') ?>">
177
-<head>
178
-<meta http-equiv="Content-Type" content="<?php $this->text('mimetype') ?>; charset=<?php $this->text('charset') ?>" />
179
-<?php $this->html('headlinks') ?>
180
-<title><?php $this->text('pagetitle') ?></title>
181
-
182
-<!--[if lt IE 7]><script src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/ie7/ie7-standard-p.js" type="text/javascript"></script><![endif]-->
183
-
184
-<style type="text/css" media="screen, projection"> @import "<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/main.css"; </style>
185
-
186
-<?php if($this->data['jsvarurl']) { ?><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('jsvarurl') ?>"></script><?php } ?>
187
-<script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/common/wikibits.js"></script>
188
-<?php if($this->data['usercss']) { ?><style type="text/css"><?php $this->html('usercss') ?></style><?php } ?>
189
-
190
-<?php if($this->data['userjs']) { ?><script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('userjs') ?>"></script><?php } ?>
191
-<?php if($this->data['userjsprev']) { ?><script type="<?php $this->text('jsmimetype') ?>"><?php $this->html('userjsprev') ?></script><?php } ?>
192
-<style type="text/css"><?php $this->html('usercss') ?></style>
193
-
194
-<script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/browser.detect.js"></script>
195
-<script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/fadomatic.js"></script>
196
-<script type="<?php $this->text('jsmimetype') ?>" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/functions.js"></script>
197
-
198
-</head>
199
-<body>
200
-
201
-<script type="<?php $this->text('jsmimetype') ?>">
202
- if (is_win) {
203
- document.write("<style type='text/css' media='screen, projection'> @import '<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/main.win.css';</style>");
204
- }
205
-</script>
206
-
207
-<?php
208
- if (!$canEdit) {
209
-?>
210
-<style type="text/css">
211
-.editsection { display: none; visibility: hidden; }
212
-</style>
213
-<?php
214
- }
215
-?>
216
-
217
-<div id="header">
218
- <div id="logo"><a class="no-hover" href="http://nixos.org"><img border="0px" src="<?php $this->text('stylepath') ?>/<?php $this->text('stylename') ?>/nixos-lores.png" alt="Nix Logo"/></a></div>
219
- <ul class="short-menu" id="top-menu">
220
-<?php
221
-require_once('nixos/header.php');
222
-?>
223
- </ul>
224
-</div>
225
-
226
-
227
-<table cellpadding="0" cellspacing="0" border="0" summary="" id="bodyTable">
228
-<tr valign="top">
229
-
230
-<!--
231
-<td id="leftDiv" nowrap width="20"></td>
232
--->
233
-<td id="middleDiv" valign="top">
234
-
235
-
236
-
237
-<div id="bodyDiv">
238
-
239
-<div id="topBackground">
240
-<!--
241
-<div id="siteLogoDiv">
242
-</div>
243
-<div id="siteTitle"><a href="<?php echo $homeLink ?>"><?php echo $wgSitename ?></a></div>
244
--->
245
-<div id="loginText"><?php echo $loginText ?></div>
246
-</div>
247
-
248
-<table cellpadding="0" cellspacing="0" border="0" width="100%" id="menuTable">
249
-<tr valign="center">
250
-<td class="menuItem" onmouseover="showMenu('mainMenu', 'homeLink', 'left');" nowrap><a href="<?php echo $homeLink ?>" id="homeLink">Wiki</a></td>
251
-<td class="menuItem" nowrap><?php echo $helpLink; ?></td>
252
-<td nowrap width="100%"></td>
253
-<td class="menuItem" nowrap><?php echo $searchLabel; ?></td>
254
-<td class="menuItem" nowrap><form id="searchForm" name="searchForm" action="<?php $this->text('searchaction') ?>"><input id="searchField" name="search" type="text" autosave="wiki" results="20" accesskey="<?php $this->msg('accesskey-search') ?>" value="<?php $this->text('search') ?>" /></form></td>
255
-</tr>
256
-</table>
257
-
258
-<div id="mainMenu" style="display:none;visibility:hidden">
259
-<?php
260
- if ($canEdit) {
261
-?>
262
-<div class="mainMenuItem"><a href="javascript:newPage('<?php echo $wgArticlePath; ?>');"><?php echo $newPageLabel; ?></a></div>
263
-<?php
264
- }
265
-?>
266
-<div class="mainMenuItem"><?php echo $allLink; ?></div>
267
-<?php
268
- if ($canEdit) {
269
-?>
270
-<div class="mainMenuItem"><?php echo $specialLink; ?></div>
271
-<div class="mainMenuItemDiv"></div>
272
-<div class="mainMenuItem"><?php echo $recentLink; ?></div>
273
-<div class="mainMenuItemDiv"></div>
274
-<div class="mainMenuItem"><?php echo $uploadLink; ?></div>
275
-<?php
276
- }
277
-?>
278
-</div>
279
-
280
-<div id="editMiniMenu" style="display:none;visibility:hidden">
281
-<div class="editMiniItem"><?php echo $historyLink; ?></div>
282
-<div class="editMiniItem"><?php echo $relatedLink; ?></div>
283
-<?php
284
- if ($deleteLink) {
285
-?>
286
-<div class="editMiniItemDiv"></div>
287
-<div class="editMiniItem"><?php echo $protectLink; ?></div>
288
-<div class="editMiniItem"><?php echo $deleteLink; ?></div>
289
-<div class="editMiniItem"><?php echo $moveLink; ?></div>
290
-<div class="editMiniItem"><?php echo $watchLink; ?></div>
291
-<?php
292
- }
293
-?>
294
-</div>
295
-
296
-<div id="pageHeader">
297
-
298
-<div id="editMenu">
299
-<?php
300
- if ($editLink && $canEdit) {
301
-?>
302
-<div class="editMenuItem editMenuItemLast" onmouseover="showMenu('editMiniMenu', 'dropLink', 'right');" id="dropLink"><?php echo $moreLabel; ?></div>
303
-<div class="editMenuItem"><?php echo $talkLink; ?></div>
304
-<div class="editMenuItem"><?php echo $editLink; ?></div>
305
-<?php
306
- }
307
-?>
308
-</div>
309
-
310
-<div id="pageTitle"><?php echo $pageLink; ?></div>
311
-
312
-</div>
313
-
314
-<div id="bodyContent">
315
-<!-- start content -->
316
-<?php
317
- // A few things must be done to the content in
318
- // order to make it more CSS-friendly
319
-
320
- $openP = false;
321
- $openSpan = false;
322
- if ($_REQUEST['title'] == "Special:Search") {
323
- echo "<span id='searchContent'>";
324
- $openSpan = true;
325
- } else if (strstr($_REQUEST['title'], "Special:Recentchangeslinked")
326
- !== false) {
327
- echo "<span id='relatedChanges'>";
328
- $openSpan = true;
329
- } else if ($_REQUEST['title'] == "Special:Userlogout") {
330
- $openP = true;
331
- } else if (strstr($_REQUEST['title'], "Special:Recentchangeslinked")
332
- != false) {
333
- $openP = true;
334
- }
335
- if ($_REQUEST['action'] == "history")
336
- $openP = true;
337
-
338
- if ($openP)
339
- echo "<p>";
340
- echo "<div id='emptyDiv'></div>\n";
341
-
342
- $bodytext = $this->data['bodytext'];
343
- $bodytext = preg_replace("/editsection.*\[(.*)\]/",
344
- "editsection\">$1", $bodytext);
345
- echo $bodytext;
346
-
347
- if ($openP)
348
- echo "</p>";
349
- if ($openSpan)
350
- echo "</span>";
351
-
352
- if ($this->data['catlinks']) {
353
- echo '<div id="catlinks">';
354
- $this->html('catlinks');
355
- echo '</div>';
356
- }
357
-
358
- echo "<div id='lastmod'>\n";
359
- $modtime = $this->data['lastmod'];
360
- $pos = strpos($modtime, "modified");
361
- $modtime = substr($modtime, $pos + 9);
362
- $modtime = str_replace(",", "", $modtime);
363
- $modtime = str_replace(".", "", $modtime);
364
- $prefix = substr($modtime, 0, 5);
365
- $suffix = substr($modtime, 6);
366
- $time = strtotime($suffix);
367
- $year = date("Y", $time);
368
- $day = date("j", $time);
369
- $month = date("n", $time);
370
- $pieces = explode(":", $prefix);
371
- $hour = $pieces[0];
372
- $minute = $pieces[1];
373
- $time = mktime($hour, $minute, $second, $month, $day, $year);
374
- if ($time > 0) {
375
- echo "Last modified " . date("F j, Y g:i a", $time);
376
- if ($this->data['copyright'])
377
- echo " / " . $this->data['copyright'];
378
- echo " / " . '<a href="http://www.ipbwiki.com/forums/index.php?showtopic=411">Skin by Kevin Hughes</a>';
379
- }
380
- echo "</div>";
381
-?>
382
-
383
-<!-- end content -->
384
-</div>
385
-<hr>
386
-<div id="footer">
387
- <ul class="short-menu" id="bottom-menu">
388
-<?php
389
- require_once('nixos/footer.php');
390
-?>
391
- </ul>
392
-</div>
393
-
394
-<?php
395
- if($this->data['poweredbyico']) { ?>
396
- <!--<center><?php $this->html('poweredbyico') ?></center>-->
397
-<?php } ?>
398
-
399
-</div>
400
-
401
-</td>
402
-
403
-
404
-<!--
405
-<td id="rightDiv" nowrap width="20"></td>
406
--->
407
-</tr>
408
-</table>
409
-
410
-</body>
411
-</html>
412
-
413
-<?php
414
- wfRestoreWarnings();
415
- }
416
-}
417
-?>
delft/wiki-skins/nixos/arrow-right.gif
Binary files a/delft/wiki-skins/nixos/arrow-right.gif and /dev/null differ
delft/wiki-skins/nixos/background.left.gif
Binary files a/delft/wiki-skins/nixos/background.left.gif and /dev/null differ
delft/wiki-skins/nixos/background.right.gif
Binary files a/delft/wiki-skins/nixos/background.right.gif and /dev/null differ
delft/wiki-skins/nixos/background.sidebar.gif
Binary files a/delft/wiki-skins/nixos/background.sidebar.gif and /dev/null differ
delft/wiki-skins/nixos/background.top.gif
Binary files a/delft/wiki-skins/nixos/background.top.gif and /dev/null differ
delft/wiki-skins/nixos/browser.detect.js
deleted
-419
@@ -1,419 +0,0 @@
1
-//
2
-// JavaScript Browser Sniffer
3
-// Eric Krok, Andy King, Michel Plungjan Jan. 31, 2002
4
-// see http://www.webreference.com/ for more information
5
-//
6
-// This program is free software; you can redistribute it and/or modify
7
-// it under the terms of the GNU General Public License as published by
8
-// the Free Software Foundation; either version 2 of the License, or
9
-// (at your option) any later version.
10
-//
11
-// please send any improvements to aking@internet.com and we'll
12
-// roll the best ones in
13
-//
14
-// adapted from Netscape's Ultimate client-side JavaScript client sniffer
15
-// and andy king's sniffer
16
-// Revised May 7 99 to add is.nav5up and is.ie5up (see below). (see below).
17
-// Revised June 11 99 to add additional props, checks
18
-// Revised June 23 99 added screen props - gecko m6 doesn't support yet - abk
19
-// converted to var is_ from is object to work everywhere
20
-// 990624 - added cookie forms links frames checks - abk
21
-// 001031 - ie4 mod 5.0 -> 5. (ie5.5 mididentified - abk)
22
-// is_ie4 mod tp work with ie6+ - abk
23
-// 001120 - ns6 released, document.layers false, put back in
24
-// - is_nav6 test added - abk
25
-// 001121 - ns6+ added, used document.getElementById, better test, dom-compl
26
-// 010117 - actual version for ie3-5.5 by Michel Plungjan
27
-// 010118 - actual version for ns6 by Michel Plungjan
28
-// 010217 - netscape 6/mz 6 ie5.5 onload defer bug docs - abk
29
-// 011107 - added is_ie6 and is_ie6up variables - dmr
30
-// 020128 - added link to netscape's sniffer, on which this is based - abk
31
-// updated sniffer for aol4-6, ie5mac = js1.4, TVNavigator, AOLTV,
32
-// hotjava
33
-// 020131 - cleaned up links, added more links to example object detection
34
-// 020131 - a couple small problems with Opera detection. First, when Opera
35
-// is set to be compatible with other browsers it will contain their
36
-// information in the userAgent strings. Thus, to be sure we have
37
-// Opera we should check for it before checking for the other bigs.
38
-// (And make sure the others are !opera.) Also corrected a minor
39
-// bug in the is_opera6up assignment.
40
-// 020214 - Added link for Opera/JS compatibility; added improvements for
41
-// windows xp/2000 id in opera and aol 7 id (thanks to Les
42
-// Hill, Les.Hill@getronics.com, for the suggestion).
43
-// 020531 - Added N6/7 and moz identifiers.
44
-// 020605 - Added mozilla guessing, Netscape 7 identification, and cleaner
45
-// identification for Netscape 6. (this comment added after code
46
-// changes)
47
-// 020725 - Added is_gecko. -- dmr
48
-// 021205 - Added is_Flash and is_FlashVersion, based on Doc JavaScript code.
49
-// Added Opera 7 variables. -- dmr
50
-// 021209 - Added aol8. -- dmr
51
-// 030110 - Added is_safari, added 1.5 js designation for Opera 7. --dmr
52
-// 030128 - Added is_konq, per user suggestion (thanks to Sam Vilain).
53
-// Removed duplicate Opera checks left over after last revision. - dmr
54
-// 031124 - Added is_fb and version. We report this right after the is_moz
55
-// report. - dmr
56
-// 040325 - Added is_fx and version. We report this right after the is_moz
57
-// report. - dmr
58
-// 040421 - Added Debian check to is_moz. Thanks to Patrice Bridoux for
59
-// reporting this.
60
-// 040517 - Added is_fb/is_fx to plugins based flash detection. Thanks to
61
-// Martin Bischoff for pointing out this omission.
62
-// 040617 - On Mac IE, appVersion differs from the version in the ua,
63
-// with the UA appearing to be more accurate. As an experiment,
64
-// for Mac we'll pull is_minor from the ua instead.
65
-// 040831 - Fixed Opera bug in flash detection logic; when Opera has
66
-// "enable plugins" unchecked in preferences, the "plugin"
67
-// variable is still true, but the "description" property
68
-// belonging to it is undefined.
69
-//
70
-// Everything you always wanted to know about your JavaScript client
71
-// but were afraid to ask. Creates "is_" variables indicating:
72
-// (1) browser vendor:
73
-// is_nav, is_ie, is_opera
74
-// (2) browser version number:
75
-// is_major (integer indicating major version number: 2, 3, 4 ...)
76
-// is_minor (float indicating full version number: 2.02, 3.01, 4.04 ...)
77
-// (3) browser vendor AND major version number
78
-// is_nav2, is_nav3, is_nav4, is_nav4up, is_nav5, is_nav5up,
79
-// is_nav6, is_nav6up, is_ie3, is_ie4, is_ie4up, is_ie5up, is_ie6...
80
-// (4) JavaScript version number:
81
-// is_js (float indicating full JavaScript version number: 1, 1.1, 1.2 ...)
82
-// (5) OS platform and version:
83
-// is_win, is_win16, is_win32, is_win31, is_win95, is_winnt, is_win98
84
-// is_os2
85
-// is_mac, is_mac68k, is_macppc
86
-// is_unix
87
-// is_sun, is_sun4, is_sun5, is_suni86
88
-// is_irix, is_irix5, is_irix6
89
-// is_hpux, is_hpux9, is_hpux10
90
-// is_aix, is_aix1, is_aix2, is_aix3, is_aix4
91
-// is_linux, is_sco, is_unixware, is_mpras, is_reliant
92
-// is_dec, is_sinix, is_freebsd, is_bsd
93
-// is_vms
94
-//
95
-// based in part on
96
-// http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html
97
-// The Ultimate JavaScript Client Sniffer
98
-// and Andy King's object detection sniffer
99
-//
100
-// Note: you don't want your Nav4 or IE4 code to "turn off" or
101
-// stop working when Nav5 and IE5 (or later) are released, so
102
-// in conditional code forks, use is_nav4up ("Nav4 or greater")
103
-// and is_ie4up ("IE4 or greater") instead of is_nav4 or is_ie4
104
-// to check version in code which you want to work on future
105
-// versions. For DOM tests scripters commonly used the
106
-// is_getElementById test, but make sure you test your code as
107
-// filter non-compliant browsers (Opera 5-6 for example) as some
108
-// browsers return true for this test, and don't fully support
109
-// the W3C's DOM1.
110
-//
111
-
112
- // convert all characters to lowercase to simplify testing
113
- var agt=navigator.userAgent.toLowerCase();
114
- var appVer = navigator.appVersion.toLowerCase();
115
-
116
- // *** BROWSER VERSION ***
117
-
118
- var is_minor = parseFloat(appVer);
119
- var is_major = parseInt(is_minor);
120
-
121
- var is_opera = (agt.indexOf("opera") != -1);
122
- var is_opera2 = (agt.indexOf("opera 2") != -1 || agt.indexOf("opera/2") != -1);
123
- var is_opera3 = (agt.indexOf("opera 3") != -1 || agt.indexOf("opera/3") != -1);
124
- var is_opera4 = (agt.indexOf("opera 4") != -1 || agt.indexOf("opera/4") != -1);
125
- var is_opera5 = (agt.indexOf("opera 5") != -1 || agt.indexOf("opera/5") != -1);
126
- var is_opera6 = (agt.indexOf("opera 6") != -1 || agt.indexOf("opera/6") != -1); // new 020128- abk
127
- var is_opera7 = (agt.indexOf("opera 7") != -1 || agt.indexOf("opera/7") != -1); // new 021205- dmr
128
- var is_opera5up = (is_opera && !is_opera2 && !is_opera3 && !is_opera4);
129
- var is_opera6up = (is_opera && !is_opera2 && !is_opera3 && !is_opera4 && !is_opera5); // new020128
130
- var is_opera7up = (is_opera && !is_opera2 && !is_opera3 && !is_opera4 && !is_opera5 && !is_opera6); // new021205 -- dmr
131
-
132
- // Note: On IE, start of appVersion return 3 or 4
133
- // which supposedly is the version of Netscape it is compatible with.
134
- // So we look for the real version further on in the string
135
- // And on Mac IE5+, we look for is_minor in the ua; since
136
- // it appears to be more accurate than appVersion - 06/17/2004
137
-
138
- var is_mac = (agt.indexOf("mac")!=-1);
139
- var iePos = appVer.indexOf('msie');
140
- if (iePos !=-1) {
141
- if(is_mac) {
142
- var iePos = agt.indexOf('msie');
143
- is_minor = parseFloat(agt.substring(iePos+5,agt.indexOf(';',iePos)));
144
- }
145
- else is_minor = parseFloat(appVer.substring(iePos+5,appVer.indexOf(';',iePos)));
146
- is_major = parseInt(is_minor);
147
- }
148
-
149
- // ditto Konqueror
150
-
151
- var is_konq = false;
152
- var kqPos = agt.indexOf('konqueror');
153
- if (kqPos !=-1) {
154
- is_konq = true;
155
- is_minor = parseFloat(agt.substring(kqPos+10,agt.indexOf(';',kqPos)));
156
- is_major = parseInt(is_minor);
157
- }
158
-
159
- var is_getElementById = (document.getElementById) ? "true" : "false"; // 001121-abk
160
- var is_getElementsByTagName = (document.getElementsByTagName) ? "true" : "false"; // 001127-abk
161
- var is_documentElement = (document.documentElement) ? "true" : "false"; // 001121-abk
162
-
163
- var is_safari = ((agt.indexOf('safari')!=-1)&&(agt.indexOf('mac')!=-1))?true:false;
164
- var is_khtml = (is_safari || is_konq);
165
-
166
- var is_gecko = ((!is_khtml)&&(navigator.product)&&(navigator.product.toLowerCase()=="gecko"))?true:false;
167
- var is_gver = 0;
168
- if (is_gecko) is_gver=navigator.productSub;
169
-
170
- var is_moz = ((agt.indexOf('mozilla/5')!=-1) && (agt.indexOf('spoofer')==-1) &&
171
- (agt.indexOf('compatible')==-1) && (agt.indexOf('opera')==-1) &&
172
- (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1) &&
173
- (is_gecko) &&
174
- ((navigator.vendor=="")||(navigator.vendor=="Mozilla")||(navigator.vendor=="Debian")));
175
- var is_fb = ((agt.indexOf('mozilla/5')!=-1) && (agt.indexOf('spoofer')==-1) &&
176
- (agt.indexOf('compatible')==-1) && (agt.indexOf('opera')==-1) &&
177
- (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1) &&
178
- (is_gecko) && (navigator.vendor=="Firebird"));
179
- var is_fx = ((agt.indexOf('mozilla/5')!=-1) && (agt.indexOf('spoofer')==-1) &&
180
- (agt.indexOf('compatible')==-1) && (agt.indexOf('opera')==-1) &&
181
- (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1) &&
182
- (is_gecko) && (navigator.vendor=="Firefox"));
183
- if ((is_moz)||(is_fb)||(is_fx)) { // 032504 - dmr
184
- var is_moz_ver = (navigator.vendorSub)?navigator.vendorSub:0;
185
- if(!(is_moz_ver)) {
186
- is_moz_ver = agt.indexOf('rv:');
187
- is_moz_ver = agt.substring(is_moz_ver+3);
188
- is_paren = is_moz_ver.indexOf(')');
189
- is_moz_ver = is_moz_ver.substring(0,is_paren);
190
- }
191
- is_minor = is_moz_ver;
192
- is_major = parseInt(is_moz_ver);
193
- }
194
- var is_fb_ver = is_moz_ver;
195
- var is_fx_ver = is_moz_ver;
196
-
197
- var is_nav = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
198
- && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
199
- && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1)
200
- && (!is_khtml) && (!(is_moz)) && (!is_fb) && (!is_fx));
201
-
202
- // Netscape6 is mozilla/5 + Netscape6/6.0!!!
203
- // Mozilla/5.0 (Windows; U; Win98; en-US; m18) Gecko/20001108 Netscape6/6.0
204
- // Changed this to use navigator.vendor/vendorSub - dmr 060502
205
- // var nav6Pos = agt.indexOf('netscape6');
206
- // if (nav6Pos !=-1) {
207
- if ((navigator.vendor)&&
208
- ((navigator.vendor=="Netscape6")||(navigator.vendor=="Netscape"))&&
209
- (is_nav)) {
210
- is_major = parseInt(navigator.vendorSub);
211
- // here we need is_minor as a valid float for testing. We'll
212
- // revert to the actual content before printing the result.
213
- is_minor = parseFloat(navigator.vendorSub);
214
- }
215
-
216
- var is_nav2 = (is_nav && (is_major == 2));
217
- var is_nav3 = (is_nav && (is_major == 3));
218
- var is_nav4 = (is_nav && (is_major == 4));
219
- var is_nav4up = (is_nav && is_minor >= 4); // changed to is_minor for
220
- // consistency - dmr, 011001
221
- var is_navonly = (is_nav && ((agt.indexOf(";nav") != -1) ||
222
- (agt.indexOf("; nav") != -1)) );
223
-
224
- var is_nav6 = (is_nav && is_major==6); // new 010118 mhp
225
- var is_nav6up = (is_nav && is_minor >= 6); // new 010118 mhp
226
-
227
- var is_nav5 = (is_nav && is_major == 5 && !is_nav6); // checked for ns6
228
- var is_nav5up = (is_nav && is_minor >= 5);
229
-
230
- var is_nav7 = (is_nav && is_major == 7);
231
- var is_nav7up = (is_nav && is_minor >= 7);
232
-
233
- var is_ie = ((iePos!=-1) && (!is_opera) && (!is_khtml));
234
- var is_ie3 = (is_ie && (is_major < 4));
235
-
236
- var is_ie4 = (is_ie && is_major == 4);
237
- var is_ie4up = (is_ie && is_minor >= 4);
238
- var is_ie5 = (is_ie && is_major == 5);
239
- var is_ie5up = (is_ie && is_minor >= 5);
240
-
241
- var is_ie5_5 = (is_ie && (agt.indexOf("msie 5.5") !=-1)); // 020128 new - abk
242
- var is_ie5_5up =(is_ie && is_minor >= 5.5); // 020128 new - abk
243
-
244
- var is_ie6 = (is_ie && is_major == 6);
245
- var is_ie6up = (is_ie && is_minor >= 6);
246
-
247
-// KNOWN BUG: On AOL4, returns false if IE3 is embedded browser
248
- // or if this is the first browser window opened. Thus the
249
- // variables is_aol, is_aol3, and is_aol4 aren't 100% reliable.
250
-
251
- var is_aol = (agt.indexOf("aol") != -1);
252
- var is_aol3 = (is_aol && is_ie3);
253
- var is_aol4 = (is_aol && is_ie4);
254
- var is_aol5 = (agt.indexOf("aol 5") != -1);
255
- var is_aol6 = (agt.indexOf("aol 6") != -1);
256
- var is_aol7 = ((agt.indexOf("aol 7")!=-1) || (agt.indexOf("aol7")!=-1));
257
- var is_aol8 = ((agt.indexOf("aol 8")!=-1) || (agt.indexOf("aol8")!=-1));
258
-
259
- var is_webtv = (agt.indexOf("webtv") != -1);
260
-
261
- // new 020128 - abk
262
-
263
- var is_TVNavigator = ((agt.indexOf("navio") != -1) || (agt.indexOf("navio_aoltv") != -1));
264
- var is_AOLTV = is_TVNavigator;
265
-
266
- var is_hotjava = (agt.indexOf("hotjava") != -1);
267
- var is_hotjava3 = (is_hotjava && (is_major == 3));
268
- var is_hotjava3up = (is_hotjava && (is_major >= 3));
269
-
270
- // end new
271
-
272
- // *** JAVASCRIPT VERSION CHECK ***
273
- // Useful to workaround Nav3 bug in which Nav3
274
- // loads <SCRIPT LANGUAGE="JavaScript1.2">.
275
- // updated 020131 by dragle
276
- var is_js;
277
- if (is_nav2 || is_ie3) is_js = 1.0;
278
- else if (is_nav3) is_js = 1.1;
279
- else if ((is_opera5)||(is_opera6)) is_js = 1.3; // 020214 - dmr
280
- else if (is_opera7up) is_js = 1.5; // 031010 - dmr
281
- else if (is_khtml) is_js = 1.5; // 030110 - dmr
282
- else if (is_opera) is_js = 1.1;
283
- else if ((is_nav4 && (is_minor <= 4.05)) || is_ie4) is_js = 1.2;
284
- else if ((is_nav4 && (is_minor > 4.05)) || is_ie5) is_js = 1.3;
285
- else if (is_nav5 && !(is_nav6)) is_js = 1.4;
286
- else if (is_hotjava3up) is_js = 1.4; // new 020128 - abk
287
- else if (is_nav6up) is_js = 1.5;
288
-
289
- // NOTE: In the future, update this code when newer versions of JS
290
- // are released. For now, we try to provide some upward compatibility
291
- // so that future versions of Nav and IE will show they are at
292
- // *least* JS 1.x capable. Always check for JS version compatibility
293
- // with > or >=.
294
-
295
- else if (is_nav && (is_major > 5)) is_js = 1.4;
296
- else if (is_ie && (is_major > 5)) is_js = 1.3;
297
- else if (is_moz) is_js = 1.5;
298
- else if (is_fb||is_fx) is_js = 1.5; // 032504 - dmr
299
-
300
- // what about ie6 and ie6up for js version? abk
301
-
302
- // HACK: no idea for other browsers; always check for JS version
303
- // with > or >=
304
- else is_js = 0.0;
305
- // HACK FOR IE5 MAC = js vers = 1.4 (if put inside if/else jumps out at 1.3)
306
- if ((agt.indexOf("mac")!=-1) && is_ie5up) is_js = 1.4; // 020128 - abk
307
-
308
- // Done with is_minor testing; revert to real for N6/7
309
- if (is_nav6up) {
310
- is_minor = navigator.vendorSub;
311
- }
312
-
313
- // *** PLATFORM ***
314
- var is_win = ( (agt.indexOf("win")!=-1) || (agt.indexOf("16bit")!=-1) );
315
- // NOTE: On Opera 3.0, the userAgent string includes "Windows 95/NT4" on all
316
- // Win32, so you can't distinguish between Win95 and WinNT.
317
- var is_win95 = ((agt.indexOf("win95")!=-1) || (agt.indexOf("windows 95")!=-1));
318
-
319
- // is this a 16 bit compiled version?
320
- var is_win16 = ((agt.indexOf("win16")!=-1) ||
321
- (agt.indexOf("16bit")!=-1) || (agt.indexOf("windows 3.1")!=-1) ||
322
- (agt.indexOf("windows 16-bit")!=-1) );
323
-
324
- var is_win31 = ((agt.indexOf("windows 3.1")!=-1) || (agt.indexOf("win16")!=-1) ||
325
- (agt.indexOf("windows 16-bit")!=-1));
326
-
327
- var is_winme = ((agt.indexOf("win 9x 4.90")!=-1)); // new 020128 - abk
328
- var is_win2k = ((agt.indexOf("windows nt 5.0")!=-1) || (agt.indexOf("windows 2000")!=-1)); // 020214 - dmr
329
- var is_winxp = ((agt.indexOf("windows nt 5.1")!=-1) || (agt.indexOf("windows xp")!=-1)); // 020214 - dmr
330
-
331
- // NOTE: Reliable detection of Win98 may not be possible. It appears that:
332
- // - On Nav 4.x and before you'll get plain "Windows" in userAgent.
333
- // - On Mercury client, the 32-bit version will return "Win98", but
334
- // the 16-bit version running on Win98 will still return "Win95".
335
- var is_win98 = ((agt.indexOf("win98")!=-1) || (agt.indexOf("windows 98")!=-1));
336
- var is_winnt = ((agt.indexOf("winnt")!=-1) || (agt.indexOf("windows nt")!=-1));
337
- var is_win32 = (is_win95 || is_winnt || is_win98 ||
338
- ((is_major >= 4) && (navigator.platform == "Win32")) ||
339
- (agt.indexOf("win32")!=-1) || (agt.indexOf("32bit")!=-1));
340
-
341
- var is_os2 = ((agt.indexOf("os/2")!=-1) ||
342
- (navigator.appVersion.indexOf("OS/2")!=-1) ||
343
- (agt.indexOf("ibm-webexplorer")!=-1));
344
-
345
- var is_mac = (agt.indexOf("mac")!=-1);
346
- if (is_mac) { is_win = !is_mac; } // dmr - 06/20/2002
347
- var is_mac68k = (is_mac && ((agt.indexOf("68k")!=-1) ||
348
- (agt.indexOf("68000")!=-1)));
349
- var is_macppc = (is_mac && ((agt.indexOf("ppc")!=-1) ||
350
- (agt.indexOf("powerpc")!=-1)));
351
-
352
- var is_sun = (agt.indexOf("sunos")!=-1);
353
- var is_sun4 = (agt.indexOf("sunos 4")!=-1);
354
- var is_sun5 = (agt.indexOf("sunos 5")!=-1);
355
- var is_suni86= (is_sun && (agt.indexOf("i86")!=-1));
356
- var is_irix = (agt.indexOf("irix") !=-1); // SGI
357
- var is_irix5 = (agt.indexOf("irix 5") !=-1);
358
- var is_irix6 = ((agt.indexOf("irix 6") !=-1) || (agt.indexOf("irix6") !=-1));
359
- var is_hpux = (agt.indexOf("hp-ux")!=-1);
360
- var is_hpux9 = (is_hpux && (agt.indexOf("09.")!=-1));
361
- var is_hpux10= (is_hpux && (agt.indexOf("10.")!=-1));
362
- var is_aix = (agt.indexOf("aix") !=-1); // IBM
363
- var is_aix1 = (agt.indexOf("aix 1") !=-1);
364
- var is_aix2 = (agt.indexOf("aix 2") !=-1);
365
- var is_aix3 = (agt.indexOf("aix 3") !=-1);
366
- var is_aix4 = (agt.indexOf("aix 4") !=-1);
367
- var is_linux = (agt.indexOf("inux")!=-1);
368
- var is_sco = (agt.indexOf("sco")!=-1) || (agt.indexOf("unix_sv")!=-1);
369
- var is_unixware = (agt.indexOf("unix_system_v")!=-1);
370
- var is_mpras = (agt.indexOf("ncr")!=-1);
371
- var is_reliant = (agt.indexOf("reliantunix")!=-1);
372
- var is_dec = ((agt.indexOf("dec")!=-1) || (agt.indexOf("osf1")!=-1) ||
373
- (agt.indexOf("dec_alpha")!=-1) || (agt.indexOf("alphaserver")!=-1) ||
374
- (agt.indexOf("ultrix")!=-1) || (agt.indexOf("alphastation")!=-1));
375
- var is_sinix = (agt.indexOf("sinix")!=-1);
376
- var is_freebsd = (agt.indexOf("freebsd")!=-1);
377
- var is_bsd = (agt.indexOf("bsd")!=-1);
378
- var is_unix = ((agt.indexOf("x11")!=-1) || is_sun || is_irix || is_hpux ||
379
- is_sco ||is_unixware || is_mpras || is_reliant ||
380
- is_dec || is_sinix || is_aix || is_linux || is_bsd || is_freebsd);
381
-
382
- var is_vms = ((agt.indexOf("vax")!=-1) || (agt.indexOf("openvms")!=-1));
383
-// additional checks, abk
384
- var is_anchors = (document.anchors) ? "true":"false";
385
- var is_regexp = (window.RegExp) ? "true":"false";
386
- var is_option = (window.Option) ? "true":"false";
387
- var is_all = (document.all) ? "true":"false";
388
-// cookies - 990624 - abk
389
- document.cookie = "cookies=true";
390
- var is_cookie = (document.cookie) ? "true" : "false";
391
- var is_images = (document.images) ? "true":"false";
392
- var is_layers = (document.layers) ? "true":"false"; // gecko m7 bug?
393
-// new doc obj tests 990624-abk
394
- var is_forms = (document.forms) ? "true" : "false";
395
- var is_links = (document.links) ? "true" : "false";
396
- var is_frames = (window.frames) ? "true" : "false";
397
- var is_screen = (window.screen) ? "true" : "false";
398
-
399
-// java
400
- var is_java = (navigator.javaEnabled());
401
-
402
-// Flash checking code adapted from Doc JavaScript information;
403
-// see http://webref.com/js/column84/2.html
404
-
405
- var is_Flash = false;
406
- var is_FlashVersion = 0;
407
-
408
- if ((is_nav||is_opera||is_moz||is_fb||is_fx)||
409
- (is_mac&&is_ie5up)) {
410
- var plugin = (navigator.mimeTypes &&
411
- navigator.mimeTypes["application/x-shockwave-flash"] &&
412
- navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) ?
413
- navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
414
-// if (plugin) {
415
- if (plugin&&plugin.description) {
416
- is_Flash = true;
417
- is_FlashVersion = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1));
418
- }
419
- }
delft/wiki-skins/nixos/discussionitem_icon.gif
Binary files a/delft/wiki-skins/nixos/discussionitem_icon.gif and /dev/null differ
delft/wiki-skins/nixos/dropmenu_icon.gif
Binary files a/delft/wiki-skins/nixos/dropmenu_icon.gif and /dev/null differ
delft/wiki-skins/nixos/external.png
Binary files a/delft/wiki-skins/nixos/external.png and /dev/null differ
delft/wiki-skins/nixos/fadomatic.js
deleted
-176
@@ -1,176 +0,0 @@
1
-// Version 1.2
2
-
3
-// Fade interval in milliseconds
4
-// Make this larger if you experience performance issues
5
-Fadomatic.INTERVAL_MILLIS = 50;
6
-
7
-// Creates a fader
8
-// element - The element to fade
9
-// speed - The speed to fade at, from 0.0 to 100.0
10
-// initialOpacity (optional, default 100) - element's starting opacity, 0 to 100
11
-// minOpacity (optional, default 0) - element's minimum opacity, 0 to 100
12
-// maxOpacity (optional, default 0) - element's minimum opacity, 0 to 100
13
-function Fadomatic (element, rate, initialOpacity, minOpacity, maxOpacity) {
14
- this._element = element;
15
- this._intervalId = null;
16
- this._rate = rate;
17
- this._isFadeOut = true;
18
-
19
- // Set initial opacity and bounds
20
- // NB use 99 instead of 100 to avoid flicker at start of fade
21
- this._minOpacity = 0;
22
- this._maxOpacity = 99;
23
- this._opacity = 99;
24
-
25
- if (typeof minOpacity != 'undefined') {
26
- if (minOpacity < 0) {
27
- this._minOpacity = 0;
28
- } else if (minOpacity > 99) {
29
- this._minOpacity = 99;
30
- } else {
31
- this._minOpacity = minOpacity;
32
- }
33
- }
34
-
35
- if (typeof maxOpacity != 'undefined') {
36
- if (maxOpacity < 0) {
37
- this._maxOpacity = 0;
38
- } else if (maxOpacity > 99) {
39
- this._maxOpacity = 99;
40
- } else {
41
- this._maxOpacity = maxOpacity;
42
- }
43
-
44
- if (this._maxOpacity < this._minOpacity) {
45
- this._maxOpacity = this._minOpacity;
46
- }
47
- }
48
-
49
- if (typeof initialOpacity != 'undefined') {
50
- if (initialOpacity > this._maxOpacity) {
51
- this._opacity = this._maxOpacity;
52
- } else if (initialOpacity < this._minOpacity) {
53
- this._opacity = this._minOpacity;
54
- } else {
55
- this._opacity = initialOpacity;
56
- }
57
- }
58
-
59
- // See if we're using W3C opacity, MSIE filter, or just
60
- // toggling visiblity
61
- if(typeof element.style.opacity != 'undefined') {
62
-
63
- this._updateOpacity = this._updateOpacityW3c;
64
-
65
- } else if(typeof element.style.filter != 'undefined') {
66
-
67
- // If there's not an alpha filter on the element already,
68
- // add one
69
- if (element.style.filter.indexOf("alpha") == -1) {
70
-
71
- // Attempt to preserve existing filters
72
- var existingFilters="";
73
- if (element.style.filter) {
74
- existingFilters = element.style.filter+" ";
75
- }
76
- element.style.filter = existingFilters+"alpha(opacity="+this._opacity+")";
77
- }
78
-
79
- this._updateOpacity = this._updateOpacityMSIE;
80
-
81
- } else {
82
-
83
- this._updateOpacity = this._updateVisibility;
84
- }
85
-
86
- this._updateOpacity();
87
-}
88
-
89
-// Initiates a fade out
90
-Fadomatic.prototype.fadeOut = function () {
91
- this._isFadeOut = true;
92
- this._beginFade();
93
-}
94
-
95
-// Initiates a fade in
96
-Fadomatic.prototype.fadeIn = function () {
97
- this._isFadeOut = false;
98
- this._beginFade();
99
-}
100
-
101
-// Makes the element completely opaque, stops any fade in progress
102
-Fadomatic.prototype.show = function () {
103
- this.haltFade();
104
- this._opacity = this._maxOpacity;
105
- this._updateOpacity();
106
-}
107
-
108
-// Makes the element completely transparent, stops any fade in progress
109
-Fadomatic.prototype.hide = function () {
110
- this.haltFade();
111
- this._opacity = 0;
112
- this._updateOpacity();
113
-}
114
-
115
-// Halts any fade in progress
116
-Fadomatic.prototype.haltFade = function () {
117
-
118
- clearInterval(this._intervalId);
119
-}
120
-
121
-// Resumes a fade where it was halted
122
-Fadomatic.prototype.resumeFade = function () {
123
-
124
- this._beginFade();
125
-}
126
-
127
-// Pseudo-private members
128
-
129
-Fadomatic.prototype._beginFade = function () {
130
-
131
- this.haltFade();
132
- var objref = this;
133
- this._intervalId = setInterval(function() { objref._tickFade(); },Fadomatic.INTERVAL_MILLIS);
134
-}
135
-
136
-Fadomatic.prototype._tickFade = function () {
137
-
138
- if (this._isFadeOut) {
139
- this._opacity -= this._rate;
140
- if (this._opacity < this._minOpacity) {
141
- this._opacity = this._minOpacity;
142
- this.haltFade();
143
- }
144
- } else {
145
- this._opacity += this._rate;
146
- if (this._opacity > this._maxOpacity ) {
147
- this._opacity = this._maxOpacity;
148
- this.haltFade();
149
- }
150
- }
151
-
152
- this._updateOpacity();
153
-}
154
-
155
-Fadomatic.prototype._updateVisibility = function () {
156
-
157
- if (this._opacity > 0) {
158
- this._element.style.visibility = 'visible';
159
- } else {
160
- this._element.style.visibility = 'hidden';
161
- }
162
-}
163
-
164
-Fadomatic.prototype._updateOpacityW3c = function () {
165
-
166
- this._element.style.opacity = this._opacity/100;
167
- this._updateVisibility();
168
-}
169
-
170
-Fadomatic.prototype._updateOpacityMSIE = function () {
171
-
172
- this._element.filters.alpha.opacity = this._opacity;
173
- this._updateVisibility();
174
-}
175
-
176
-Fadomatic.prototype._updateOpacity = null;
delft/wiki-skins/nixos/file_icon.gif
Binary files a/delft/wiki-skins/nixos/file_icon.gif and /dev/null differ
delft/wiki-skins/nixos/footer.php
deleted
-1
@@ -1 +0,0 @@
1
-<li><a href="/about-us.html">About us</a></li>
delft/wiki-skins/nixos/functions.js
deleted
-282
@@ -1,282 +0,0 @@
1
-
2
- var menuShowing = false;
3
- var currentMenu = "";
4
- var currentMenuParent = "";
5
- var coordX = 0;
6
- var coordY = 0;
7
-
8
- function newPage(pathname)
9
- {
10
- var newPageName =
11
- prompt("Enter the name for your new page. " +
12
- "Please avoid using punctuation:", "");
13
- if (newPageName == null || newPageName == "")
14
- return;
15
- else {
16
- path = new String(pathname);
17
- path = path.replace("$1", newPageName);
18
- document.location = path;
19
- }
20
- }
21
-
22
- function setMouseEvents(turnOnEvents)
23
- {
24
- if (turnOnEvents) {
25
- if (!is_ie)
26
- document.captureEvents(Event.MOUSEMOVE)
27
- document.onmousemove = getMouseXY;
28
- } else {
29
- if (!is_ie)
30
- document.releaseEvents(Event.MOUSEMOVE)
31
- document.onmousemove = "";
32
- }
33
- }
34
-
35
- function showMenu(menuID, parentID, alignment)
36
- {
37
- if (currentMenu == menuID)
38
- return;
39
- hideCurrentMenu();
40
-
41
- menuDiv = document.getElementById(menuID);
42
- menuParent = document.getElementById(parentID);
43
- menuDiv.style.display = "block";
44
- menuX = findPosX(menuParent);
45
- menuY = findPosY(menuParent);
46
- menuH = findHeight(menuParent);
47
- menuW = findWidth(menuDiv);
48
- parentW = findWidth(menuParent);
49
- if (alignment == "right")
50
- menuDiv.style.left = menuX - menuW + parentW + "px";
51
- else
52
- menuDiv.style.left = menuX + "px";
53
- if (menuID == "mainMenu")
54
- menuY++;
55
- menuDiv.style.top = menuY + menuH + "px";
56
- fader = new Fadomatic(menuDiv, 20, 0);
57
- fader.fadeIn();
58
-
59
- currentMenu = menuID;
60
- currentMenuParent = parentID;
61
- menuShowing = true;
62
- setMouseEvents(true);
63
- }
64
-
65
- function hideCurrentMenu()
66
- {
67
- if (menuShowing == false)
68
- return;
69
- hideMenu(currentMenu);
70
- }
71
-
72
- function hideMenu(menuID)
73
- {
74
- if (menuShowing == false)
75
- return;
76
- menuDiv = document.getElementById(menuID);
77
- fader = new Fadomatic(menuDiv, 20, 100);
78
- fader.fadeOut();
79
- menuShowing = false;
80
- currentMenu = "";
81
- currentMenuParent = "";
82
- }
83
-
84
- function getBodyHeight()
85
- {
86
- height = 0;
87
- if (typeof(window.innerWidth) == 'number') {
88
- height = window.innerHeight;
89
- } else if (window.document.body &&
90
- typeof(window.document.body.clientWidth) == 'number') {
91
- height = window.document.body.clientHeight;
92
- }
93
- return height;
94
- }
95
-
96
- function adjustBody()
97
- {
98
- md = document.getElementById("middleDiv");
99
- w = findWidth(md);
100
- if (w > 850)
101
- md.style.width = "850px";
102
- }
103
-
104
- function safariSearch()
105
- {
106
- if (is_safari) {
107
- searchField = document.getElementById("searchField");
108
- searchField.setAttribute('type','search');
109
- }
110
- }
111
-
112
- function resizeImgs()
113
- {
114
- maxWidth = 560;
115
- var bodyEl = document.getElementById("bodyDiv");
116
- var imgs = bodyEl.getElementsByTagName('img');
117
- for (var j = 0; j < imgs.length; j++) {
118
- el = imgs[j];
119
- w = el.getAttribute('width');
120
- h = el.getAttribute('height');
121
- if (w && w > maxWidth) {
122
- el.setAttribute('width', maxWidth);
123
- el.setAttribute('height', h * (maxWidth / w));
124
- }
125
- }
126
- }
127
-
128
- function newtabaction()
129
- {
130
- oldsecid = this.parentNode.parentNode.selectedid;
131
- newsec = document.getElementById(this.secid);
132
- if (oldsecid != this.secid) {
133
- ul = document.getElementById('preftoc');
134
- document.getElementById(oldsecid).style.display =
135
- 'none';
136
- newsec.style.display = 'block';
137
- ul.selectedid = this.secid;
138
- lis = ul.getElementsByTagName('li');
139
- for (i = 0; i < lis.length; i++) {
140
- lis[i].className = '';
141
- }
142
- this.parentNode.className = 'selected';
143
- }
144
- adjustBody();
145
- return false;
146
- }
147
-
148
- function modifyTabPrefs()
149
- {
150
- prefform = document.getElementById('preferences');
151
- if (!prefform || !document.createElement) return;
152
- if (prefform.nodeName.toLowerCase() == 'a') return;
153
- lis = document.getElementsByTagName('li');
154
- for (i = 0; i < lis.length; i++) {
155
- ael = lis[i].childNodes[0];
156
- ael.onclick = newtabaction;
157
- }
158
- }
159
-
160
-/*
161
- addEvent function found at
162
- http://www.scottandrew.com/weblog/articles/cbs-events
163
-*/
164
-
165
- function addEvent(obj, evType, fn)
166
- {
167
- if (obj.addEventListener) {
168
- obj.addEventListener(evType, fn, true);
169
- return true;
170
- } else if (obj.attachEvent) {
171
- var r = obj.attachEvent("on"+evType, fn);
172
- return r;
173
- } else {
174
- return false;
175
- }
176
- }
177
-
178
- if (document.getElementById && document.createTextNode)
179
- {
180
- addEvent(window, 'load', safariSearch);
181
- addEvent(window, 'load', adjustBody);
182
- addEvent(window, 'load', resizeImgs);
183
- addEvent(window, 'load', modifyTabPrefs);
184
- addEvent(window, 'resize', adjustBody);
185
- }
186
-
187
- function findPosX(obj)
188
- {
189
- var curleft = 0;
190
- if (obj.offsetParent) {
191
- while (obj.offsetParent) {
192
- curleft += obj.offsetLeft;
193
- obj = obj.offsetParent;
194
- }
195
- } else if (obj.x)
196
- curleft += obj.x;
197
- return curleft;
198
- }
199
-
200
- function findPosY(obj)
201
- {
202
- var curtop = 0;
203
- if (obj.offsetParent) {
204
- while (obj.offsetParent) {
205
- curtop += obj.offsetTop;
206
- obj = obj.offsetParent;
207
- }
208
- } else if (obj.y)
209
- curtop += obj.y;
210
- return curtop;
211
- }
212
-
213
- function findHeight(obj)
214
- {
215
- if (obj.offsetHeight)
216
- return obj.offsetHeight;
217
- else if (obj.height)
218
- return obj.height;
219
- else if (obj.style.height)
220
- return obj.style.height;
221
- }
222
-
223
- function findWidth(obj)
224
- {
225
- if (obj.offsetWidth)
226
- return obj.offsetWidth;
227
- else if (obj.width)
228
- return obj.width;
229
- else if (obj.style.width)
230
- return obj.style.width;
231
- }
232
-
233
- function getMouseXY(e)
234
- {
235
- if (currentMenu == "")
236
- return;
237
-
238
- if (is_ie) {
239
- coordX = event.clientX + document.body.scrollLeft;
240
- coordY = event.clientY + document.body.scrollTop;
241
- } else {
242
- coordX = e.pageX;
243
- coordY = e.pageY;
244
- }
245
-
246
- if (coordX < 0)
247
- coordX = 0;
248
- if (coordY < 0)
249
- coordY = 0;
250
-
251
- testMenuBounds(currentMenuParent, currentMenu, coordX, coordY);
252
-
253
- return true;
254
- }
255
-
256
- function testMenuBounds(testid, id, x, y)
257
- {
258
- menuDivParent = document.getElementById(testid);
259
- menuDiv = document.getElementById(id);
260
-
261
- menuY = findPosY(menuDiv);
262
- menuX = findPosX(menuDiv);
263
- menuH = findHeight(menuDiv);
264
- menuW = findWidth(menuDiv);
265
-
266
- menuPY = findPosY(menuDivParent);
267
- menuPX = findPosX(menuDivParent);
268
- menuPH = findHeight(menuDivParent);
269
- menuPW = findWidth(menuDivParent);
270
-
271
- $isInMenu = true;
272
- $isInParent = true;
273
- if (x < menuX || x > menuX + menuW ||
274
- y < menuY || y > menuY + menuH)
275
- $isInMenu = false;
276
- if (x < menuPX || x > menuPX + menuPW ||
277
- y < menuPY || y > menuPY + menuPH)
278
- $isInParent = false;
279
-
280
- if ($isInMenu == false && $isInParent == false)
281
- hideMenu(id);
282
- }
delft/wiki-skins/nixos/header.php
deleted
-8
@@ -1,8 +0,0 @@
1
-<li><a href="/nixos/">NixOS</a></li>
2
-<li><a href="/nix/">Nix</a></li>
3
-<li><a href="/nixpkgs/">Nixpkgs</a></li>
4
-<li><a href="/hydra/">Hydra</a></li>
5
-<li><a href="/disnix/">Disnix</a></li>
6
-<li><a href="/development/">Development</a></li>
7
-<li><a href="/wiki">Wiki</a></li>
8
-
delft/wiki-skins/nixos/ie7/README.txt
deleted
-34
@@ -1,34 +0,0 @@
1
-Installation
2
-------------
3
-
4
-Follow these simple instructions to get IE7 working immediately on your server:
5
-
6
- * download the latest IE7 ZIP file (https://sourceforge.net/project/showfiles.php?group_id=109983&package_id=119707)
7
-
8
- * extract the contents to a directory on your server (keep the folder names used in the ZIP)
9
-
10
- * you will now have an IE7 directory on your server
11
-
12
- * include the IE7 JavaScript library in the page you wish to test
13
-
14
- <!-- compliance patch for microsoft browsers -->
15
- <!--[if lt IE 7]><script src="/ie7/ie7-standard-p.js" type="text/javascript"></script><![endif]-->
16
-
17
- * make sure this also points to the same directory
18
-
19
- * open the page in your web browser
20
-
21
- * the page should now be IE7 enabled.
22
-
23
- * if you are using the PNG solution then be aware that it operates on files
24
- names "something-trans.png"
25
-
26
- * see this page for more configuration and usage options:
27
- http://dean.edwards.name/IE7/usage/
28
-
29
-You may extract the contents of the ZIP file to your hard disk if you do not have access to a web server.
30
-
31
-
32
-Enjoy ;-)
33
-
34
-Dean Edwards, 23rd May 2005
delft/wiki-skins/nixos/ie7/blank.gif
Binary files a/delft/wiki-skins/nixos/ie7/blank.gif and /dev/null differ
delft/wiki-skins/nixos/ie7/ie7-base64.php
deleted
-7
@@ -1,7 +0,0 @@
1
-<?php
2
-$data = split(";", $_SERVER["REDIRECT_QUERY_STRING"]);
3
-$type = $data[0];
4
-$data = split(",", $data[1]);
5
-header("Content-type: ".$type);
6
-echo base64_decode($data[1]);
7
-?>
\ No newline at end of file
delft/wiki-skins/nixos/ie7/ie7-content.htc
deleted
-14
@@ -1,14 +0,0 @@
1
-<html>
2
-<!--
3
- IE7, version 0.9 (alpha) (2005-08-19)
4
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
5
- License: http://creativecommons.org/licenses/LGPL/2.1/
6
--->
7
-<head>
8
-<object id="dummy" width="0" height="0"></object>
9
-<base id="base">
10
-<style type="text/css">html,body,img{margin:0;}img{vertical-align:top}#dummy{display:inline}</style>
11
-<script type="text/javascript">public_description=new function(){var l=false;this.ie7_anon=true;this.load=function(o,c,u){if(l)return;l=true;base.href=o.document.URL;dummy.style.cssText=c;var _0=o.parentElement;var _1=Boolean(dummy.currentStyle.display=="inline");function r(){o.runtimeStyle.width=(_1)?image.offsetWidth:"100%";o.runtimeStyle.height=body.offsetHeight};image.onreadystatechange=function(){if(this.readyState=="complete")_2()};image.src=u;function _2(){function copy(p){try{body.style[p]=_0.currentStyle[p]}catch(i){}};for(var j in body.currentStyle)copy(j);body.style.width="";body.style.height="";body.style.border="none";body.style.padding="0";body.style.margin="0";body.style.textIndent="";body.style.position="static";while(_0&&_0.currentStyle.backgroundColor=="transparent"){_0=_0.parentElement}if(_0)document.body.style.backgroundColor=_0.currentStyle.backgroundColor;body.runtimeStyle.cssText=c;body.runtimeStyle.margin="0";if(_1)body.runtimeStyle.width="";r()}}};</script>
12
-</head>
13
-<body><span id="body"><img id="image"></span></body>
14
-</html>
delft/wiki-skins/nixos/ie7/ie7-core.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('x(!1M.1j)z 6(){1l{1M.1j=8;4 1W=8.2m=z 26;8.O=6(){7"1j 2q 0.9 (5G)"};4 36=/36/.B(42.41.40);4 1G=(36)?6(m){1M.1G(1j+"\\n\\n"+m)}:1W;4 2t=5F.2t.1g(/5E (\\d\\.\\d)/)[1];4 2z=K.5D!="5C";x(/5B/.B(42.41.40)||2t<5||!/^5A/.B(K.1J.2A))7;4 1H=K.39=="1H";4 1t,5z;4 1J=K.1J,2s,3X,17=K.17;4 5y="!";4 22={};4 1u=1C;1j.2m=6(n,s){x(!22[n]){x(1u)1k("s="+2o(s));22[n]=z s()}};4 R=/^[\\w\\.]+[^:]*$/;6 1I(h,p){x(R.B(h))h=(p||"")+h;7 h};6 2e(h,p){h=1I(h,p);7 h.1d(0,h.3n("/")+1)};4 s=K.3Z[K.3Z.y-1];1l{1k(s.3z)}1i(i){}4 1R=2e(s.5x);4 1F;1l{4 l=(5w()>=5)?"5v":"5u";1F=z 5t(l+".5s")}1i(i){}4 2w={};6 2y(h,p){1l{h=1I(h,p);x(!2w[h]){1F.5r("5q",h,1C);1F.5p();x(1F.3Y==0||1F.3Y==5o){2w[h]=1F.5n}}}1i(i){1G("2x [1]: 30 5m 5l "+h)}37{7 2w[h]||""}};4 5k=1I("5j.5i",1R);6 1E(V){x(V!=1L){V.2v=13.16.2v;V.12=13.16.12}7 V};1E.12=6(p,c){x(!p)p={};x(!c)c=p.J;x(c=={}.J)c=z 26("8.2v()");c.Y=z 26("7 8");c.Y.16=z 8.Y;c.Y.16.12(p);c.16=z c.Y;c.Y.16.J=c.16.J=c;c.1r=8;c.12=F.32;c.2u=8.2u;7 c};1E.Y=z 26("7 8");1E.Y.16={J:1E,2v:6(){7 F.32.5h.1r.2k(8,F)},12:6(V){x(8==8.J.16&&8.J.12){7 8.J.Y.16.12(V)}D(4 i 5g V){2K(i){1o"J":1o"O":1o"Y":2X}x(2V V[i]=="6"&&V[i]!=8[i]){V[i].1r=8[i]}8[i]=V[i]}x(V.O!=8.O&&V.O!={}.O){V.O.1r=8.O;8.O=V.O}7 8}};6 13(){};8.13=1E.12({J:13,O:6(){7"[5f "+(8.J.2Z||"5e")+"]"},5d:6(1h){7 8.J==1h||1h.2u(8.J)}});13.2Z="13";13.1r=1L;13.2u=6(1h){1f(1h&&1h.1r!=8)1h=1h.1r;7 3J(1h)};13.Y.1r=1E;2a 8.13;4 3A=13.12({J:6(){8.5c=[];8.1p=[]},1s:1W});x(2t<5.5)1k(2y("Z-5b.3a",1R));4 35=1C;1j.1s=6(){1l{x(35)7;35=1H=1c;2s=K.2s;3X=(2z)?2s:1J;x(1K&&1t)1t.2k();15.2k();1n();1G("1u 5a")}1i(e){1G("2x [2]: "+e.38)}};4 1p=[];6 2C(r){1p.11(r)};6 1n(){H.3P();x(1K&&1t)1t.1n();15.1n();D(4 i=0;i<1p.y;i++)1p[i]()};6 23(){4 E=0,R=1,L=2;4 G=/\\(/g,S=/\\$\\d/,I=/^\\$\\d+$/,T=/([\'"])\\1\\+(.*)\\+\\1\\1$/,3Q=/\\\\./g,Q=/\'/,3W=/\\25[^\\25]*\\25/g;4 1X=8;8.18=6(e,r){x(!r)r="";4 l=(34(2o(e)).1g(G)||"").y+1;x(S.B(r)){x(I.B(r)){r=3e(r.1d(1))-1}1b{4 i=l;4 q=Q.B(34(r))?\'"\':"\'";1f(i)r=r.2S("$"+i--).2p(q+"+a[o+"+i+"]+"+q);r=z 26("a,o","7"+q+r.19(T,"$1")+q)}}3V(e||"/^$/",r,l)};8.1U=6(s){24.y=0;7 3R(3S(s,8.2r).19(z 1Z(1D,8.33?"2I":"g"),3T),8.2r).19(3W,"")};8.59=6(){1D.y=0};4 24=[];4 1D=[];4 3U=6(){7"("+2o(8[E]).1d(1,-1)+")"};1D.O=6(){7 8.2p("|")};6 3V(){F.O=3U;1D[1D.y]=F}6 3T(){x(!F[0])7"";4 i=1,j=0,p;1f(p=1D[j++]){x(F[i]){4 r=p[R];2K(2V r){1o"6":7 r(F,i);1o"58":7 F[r+i]}4 d=(F[i].57(1X.2r)==-1)?"":"\\25"+F[i]+"\\25";7 d+r}1b i+=p[L]}};6 3S(s,e){7 e?s.19(z 1Z("\\\\"+e+"(.)","g"),6(m,c){24[24.y]=c;7 e}):s};6 3R(s,e){4 i=0;7 e?s.19(z 1Z("\\\\"+e,"g"),6(){7 e+(24[i++]||"")}):s};6 34(s){7 s.19(3Q,"")}};23.16={J:23,33:1C,2r:""};13.12(23.16);4 1V=23.12({33:1c});4 H=6(){4 2q="2.0.2";4 C=/\\s*,\\s*/;4 H=6(s,14){1l{4 m=[];4 u=F.32.2Q&&!14;4 b=(14)?(14.J==3G)?14:[14]:[K];4 31=3D(s).2S(C),i;D(i=0;i<31.y;i++){s=2R(31[i]);x(3K&&s.1d(0,3).2p("")==" *#"){s=s.1d(2);14=3H([],b,s[1])}1b 14=b;4 j=0,t,f,a,c="";1f(j<s.y){t=s[j++];f=s[j++];c+=t+f;a="";x(s[j]=="("){1f(s[j++]!=")"&&j<s.y){a+=s[j]}a=a.1d(0,-1);c+="("+a+")"}14=(u&&1P[c])?1P[c]:3F(14,t,f,a);x(u)1P[c]=14}m=m.3t(14)}2a H.30;7 m}1i(e){H.30=e;7[]}};H.O=6(){7"6 H() {\\n [2q "+2q+"]\\n}"};4 1P={};H.2Q=1C;H.3P=6(s){x(s){s=2R(s).2p("");2a 1P[s]}1b 1P={}};4 22={};4 1u=1C;H.2m=6(n,s){x(1u)1k("s="+2o(s));22[n]=z s()};H.Y=6(c){7 c?1k(c):8};4 1B={};4 2n={};4 56={1g:/\\[([\\w-]+(\\|[\\w-]+)?)\\s*(\\W?=)?\\s*([^\\]]*)\\]/};4 55=[];1B[" "]=6(r,f,t,n){4 e,i,j;D(i=0;i<f.y;i++){4 s=2l(f[i],t,n);D(j=0;(e=s[j]);j++){x(1q(e)&&2T(e,n))r.11(e)}}};1B["#"]=6(r,f,i){4 e,j;D(j=0;(e=f[j]);j++)x(e.1a==i)r.11(e)};1B["."]=6(r,f,c){c=z 1Z("(^|\\\\s)"+c+"(\\\\s|$)");4 e,i;D(i=0;(e=f[i]);i++)x(c.B(e.2Z))r.11(e)};1B[":"]=6(r,f,p,a){4 t=2n[p],e,i;x(t)D(i=0;(e=f[i]);i++)x(t(e,a))r.11(e)};2n["21"]=6(e){4 d=2U(e);x(d.2Y)D(4 i=0;i<d.2Y.y;i++){x(d.2Y[i]==e)7 1c}};2n["2N"]=6(e){};4 1q=6(e){7(e&&e.3B==1&&e.2P!="!")?e:1L};4 3N=6(e){1f(e&&(e=e.54)&&!1q(e))2X;7 e};4 2W=6(e){1f(e&&(e=e.53)&&!1q(e))2X;7 e};4 3L=6(e){7 1q(e.3O)||2W(e.3O)};4 52=6(e){7 1q(e.3M)||3N(e.3M)};4 51=6(e){4 c=[];e=3L(e);1f(e){c.11(e);e=2W(e)}7 c};4 3K=1c;4 2O=6(e){4 d=2U(e);7(2V d.3I=="50")?/\\.4Z$/i.B(d.4Y):3J(d.3I=="4X 4W")};4 2U=6(e){7 e.4V||e.K};4 2l=6(e,t){7(t=="*"&&e.1A)?e.1A:e.2l(t)};4 4U=6(e,t,n){x(t=="*")7 1q(e);x(!2T(e,n))7 1C;x(!2O(e))t=t.4T();7 e.2P==t};4 2T=6(e,n){7!n||(n=="*")||(e.4S==n)};4 4R=6(e){7 e.4Q};6 3H(r,f,1a){4 m,i,j;D(i=0;i<f.y;i++){x(m=f[i].1A.4P(1a)){x(m.1a==1a)r.11(m);1b x(m.y!=1L){D(j=0;j<m.y;j++){x(m[j].1a==1a)r.11(m[j])}}}}7 r};x(![].11)3G.16.11=6(){D(4 i=0;i<F.y;i++){8[8.y]=F[i]}7 8.y};4 N=/\\|/;6 3F(14,t,f,a){x(N.B(f)){f=f.2S(N);a=f[0];f=f[1]}4 r=[];x(1B[t]){1B[t](r,14,f,a)}7 r};4 S=/^[^\\s>+~]/;4 3E=/[\\s#.:>+~()@]|[^\\s#.:>+~()@]+/g;6 2R(s){x(S.B(s))s=" "+s;7 s.1g(3E)||[]};4 W=/\\s*([\\s>+~(),]|^|$)\\s*/g;4 I=/([\\s>+~,]|[^(]\\+|^)([#.:@])/g;4 3D=6(s){7 s.19(W,"$1").19(I,"$1*$2")};4 1y={O:6(){7"\'"},1g:/^(\'[^\']*\')|("[^"]*")$/,B:6(s){7 8.1g.B(s)},18:6(s){7 8.B(s)?s:8+s+8},3C:6(s){7 8.B(s)?s.1d(1,-1):s}};4 1N=6(t){7 1y.3C(t)};4 E=/([\\/()[\\]?{}|*+-])/g;6 4O(s){7 s.19(E,"\\\\$1")};1u=1c;7 H}();H.2Q=1c;H.2m("Z",6(){1q=6(e){7(e&&e.3B==1&&e.2P!="!"&&!e.3d)?e:1L}});H.Y("1N=F[1]",3k);4 1K=!H.Y("2O(F[1])",1J);4 2h=":21{Z-21:21}:2N{Z-21:2N}"+(1K?"":"*{4N:0}");4 15=z(3A.12({2F:z 1V,1O:"",1w:"",2L:[],1s:6(){8.2M();8.2g()},2g:6(){15.1Y.X=2h+8.1O+8.1w},3y:6(){4 20=K.2l("1e"),s;D(4 i=20.y-1;(s=20[i]);i--){x(!s.2H&&!s.Z){8.2L.11(s.3z)}}},2k:6(){8.3y();8.2g();z 28("1O");8.3u()},3w:6(e,r){8.2F.18(e,r)},1n:6(){4 R=/3v\\d+/g;4 s=2h.1g(/[{,]/g).y;4 20=s+(8.1O.X.1g(/\\{/g)||"").y;4 3x=8.1Y.4M,r;4 2j,c,2i,e,i,j,k,1a;D(i=s;i<20;i++){r=3x[i];x(r&&(2j=r.1e.X.1g(R))){2i=H(r.4L);x(2i.y)D(j=0;j<2j.y;j++){1a=2j[j];c=15.1p[1a.1d(10)][2];D(k=0;(e=2i[k]);k++){x(e.1v[1a])c(e)}}}}},2C:6(p,t,h,r){t=z 1Z("([{;\\\\s])"+p+"\\\\s*:\\\\s*"+t+"[^;}]*");4 i=8.1p.y;x(r)r=p+":"+r;8.3w(t,6(m,o){7(r?m[o+1]+r:m[o])+";Z-"+m[o].1d(1)+";3v"+i+":1"});8.1p.11(F);7 i},1N:6(s){7 s.X||""},2M:6(){x(1H||!1K)K.2M();1b K.4K("<1e Z=1c></1e>");8.1Y=17[17.y-1];8.1Y.Z=1c;8.1Y.X=2h},3u:6(){D(4 i=0;i<17.y;i++){x(!17[i].Z&&17[i].X){17[i].X=""}}}}));6 28(m){8.1z=m;8.1S();15[m]=8;15.2g()};13.12({J:28,O:6(){7"@1z "+8.1z+"{"+8.X+"}"},1n:1W,1S:6(){8.X="";8.1N();8.3m();8.X=3j(8.X);f={}},1N:6(){4 3r=[].3t(15.2L);4 M=/@1z\\s+([^{]*)\\{([^@]+\\})\\s*\\}/2I;4 A=/\\4J\\b|^$/i,S=/\\4I\\b/i,P=/\\4H\\b/i;6 3q(c,m){2f.v=m;7 c.19(M,2f)};6 2f(4G,m,c){m=2J(m);2K(m){1o"1O":1o"1w":x(m!=2f.v)7"";1o"1A":7 c}7""};6 2J(m){x(A.B(m))7"1A";1b x(S.B(m))7(P.B(m))?"1A":"1O";1b x(P.B(m))7"1w"};4 1X=8;6 2G(s,p,m,l){4 c="";x(!l){m=2J(s.1z);l=0}x(m=="1A"||m==1X.1z){x(l<3){D(4 i=0;i<s.3s.y;i++){c+=2G(s.3s[i],2e(s.2d,p),m,l+1)}}c+=3l(s.2d?3p(s,p):3r.3h()||"");c=3q(c,1X.1z)}7 c};4 f={};6 3p(s,p){4 u=1I(s.2d,p);x(f[u])7"";f[u]=(s.2H)?"":3o(15.1N(s,p),2e(s.2d,p));7 f[u]};4 U=/(4F\\s*\\(\\s*[\'"]?)([\\w\\.]+[^:\\)]*[\'"]?\\))/2I;6 3o(c,p){7 c.19(U,"$1"+p.1d(0,p.3n("/")+1)+"$2")};D(4 i=0;i<17.y;i++){x(!17[i].2H&&!17[i].Z){8.X+=2G(17[i])}}},3m:6(){8.X=15.2F.1U(8.X)},1n:1W});4 1y=H.Y("1y");4 2b=[];6 3l(c){7 1x.1U(2c.1U(c))};6 2E(m,o){7 1y+(2b.11(m[o])-1)+1y};6 3k(v){7 1y.B(v)?1k(2b[1k(v)]):v};4 1x=z 1V;1x.18(/\\/\\*[^*]*\\*+([^\\/][^*]*\\*+)*\\//);1x.18(/\'[^\']*\'/,2E);1x.18(/"[^"]*"/,2E);1x.18(/\\s+/," ");1x.18(/@(4E|4D)[^;\\n]+[;\\n]|<!\\-\\-|\\-\\->/);4 2c=z 1V;2c.18(/\\\\\'/,"\\\\4C");2c.18(/\\\\"/,"\\\\4B");4 2D=z 1V;2D.18(/\'(\\d+)\'/,3i);6 3j(c){7 2D.1U(c)};6 3i(m,o){7 2b[m[o+1]]};4 2B=[];6 4A(h){2C(h);1Q(1M,"4z",h)};6 1Q(e,t,h){e.4y(t,h);2B.11(F)};6 3g(e,t,h){1l{e.4x(t,h)}1i(i){}};1Q(1M,"4w",6(){4 h;1f(h=2B.3h()){3g(h[0],h[1],h[2])}});6 4v(h,e,c){x(!h.29)h.29={};x(c)h.29[e.2A]=e;1b 2a h.29[e.2A];7 c};1Q(1M,"4u",6(){x(!15.1w)z 28("1w");15.1w.1n()});4 3f=/^\\d+(4t)?$/i;4 4s=/^\\d+%$/;4 4r=6(e,v){x(3f.B(v))7 3e(v);4 s=e.1e.1m;4 r=e.1T.1m;e.1T.1m=e.1v.1m;e.1e.1m=v||0;v=e.1e.4q;e.1e.1m=s;e.1T.1m=r;7 v};6 4p(t){4 e=K.4o(t||"4n");e.1e.X="3c:4m;4l:0;4k:4j;4i:4h;4g:4f(0 0 0 0);1m:-4e";e.3d=1c;7 e};4 27="Z-";6 4d(e){7 e.1v["Z-3c"]=="4c"};6 4b(e,p){7 e.1v[27+p]||e.1v[p]};6 4a(e,p,v){x(e.1v[27+p]==1L){e.1T[27+p]=e.1v[p]}e.1T[p]=v};6 49(o,c,u){4 t=48(6(){1l{x(!o.1S)7;o.1S(o,c,u);3b(t)}1i(i){3b(t)}},10)};1u=1c;x(2z)1k(2y("Z-47.3a",1R));15.1s();x(1K&&1t)1t.1s();x(1H)1j.1s();1b{1J.46(1I("Z-1S.45",1R));1Q(K,"44",6(){x(K.39=="1H")43(1j.1s,0)})}}1i(e){1G("2x [0]: "+e.38)}37{}};',62,353,'||||var||function|return|this|||||||||||||||||||||||||if|length|new||test||for||arguments||cssQuery||constructor|document||||toString|||||||that||cssText|valueOf|ie7||push|specialize|Common|fr|ie7CSS|prototype|styleSheets|add|replace|id|else|true|slice|style|while|match|klass|catch|IE7|eval|try|left|recalc|case|recalcs|thisElement|ancestor|init|ie7HTML|loaded|currentStyle|print|encoder|Quote|media|all|selectors|false|_0|ICommon|httpRequest|alert|complete|makePath|documentElement|isHTML|null|window|getText|screen|cache|addEventHandler|path|load|runtimeStyle|exec|Parser|DUMMY|self|styleSheet|RegExp|st|link|modules|ParseMaster|_1|x01|Function|_2|StyleSheet|elements|delete|_3|safeString|href|getPath|_4|refresh|HEADER|el|ca|apply|getElementsByTagName|addModule|pseudoClasses|String|join|version|escapeChar|body|appVersion|ancestorOf|inherit|_5|Error|loadFile|quirksMode|uniqueID|_6|addRecalc|decoder|_7|parser|_8|disabled|gi|_9|switch|styles|createStyleSheet|visited|isXML|tagName|caching|_10|split|compareNamespace|getDocument|typeof|nextElementSibling|continue|links|className|error|se|callee|ignoreCase|_11|_12|ie7_debug|finally|description|readyState|js|clearInterval|position|ie7_anon|parseInt|PIXEL|removeEventHandler|pop|_13|decode|getString|_14|parse|lastIndexOf|_15|_16|_17|_18|imports|concat|trash|ie7_recalc|addFix|ru|getInlineStyles|innerHTML|Fix|nodeType|remove|parseSelector|ST|select|Array|_19|mimeType|Boolean|isMSIE|firstElementChild|lastChild|previousElementSibling|firstChild|clearCache|ES|_20|_21|_22|_23|_24|DE|viewport|status|scripts|search|location|top|setTimeout|onreadystatechange|htc|addBehavior|quirks|setInterval|addTimer|setOverrideStyle|getDefinedStyle|fixed|isFixed|9999|rect|clip|none|border|block|display|padding|absolute|object|createElement|createTempElement|pixelLeft|getPixelValue|PERCENT|px|onbeforeprint|register|onunload|detachEvent|attachEvent|onresize|addResize|x22|x27|import|namespace|url|ma|bprint|bscreen|ball|write|selectorText|rules|margin|regEscape|item|innerText|getTextContent|scopeName|toUpperCase|compareTagName|ownerDocument|Document|XML|URL|xml|unknown|childElements|lastElementChild|nextSibling|previousSibling|attributeSelectors|AttributeSelector|indexOf|number|reset|successfully|ie5|fixes|instanceOf|Object|common|in|caller|gif|blank|BLANK_GIF|file|loading|responseText|200|send|GET|open|XMLHTTP|ActiveXObject|Microsoft|Msxml2|ScriptEngineMajorVersion|src|ANON|ie7Layout|ms_|ie7_off|CSS1Compat|compatMode|MSIE|navigator|alpha'.split('|'),0,{}))
delft/wiki-skins/nixos/ie7/ie7-css-strict.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-css-strict",function(){if(!modules["ie7-css2-selectors"])return;StyleSheet.prototype.specialize({parse:function(){this.inherit();var r=[].concat(this.rules);r.sort(ie7CSS.Rule.compare);this.cssText=r.join("\n")},createRule:function(s,c){var m;if(m=s.match(ie7CSS.PseudoElement.MATCH))return new ie7CSS.PseudoElement(m[1],m[2],c);else if(m=s.match(ie7CSS.DynamicRule.MATCH))return new ie7CSS.DynamicRule(s,m[1],m[2],m[3],c);else return new ie7CSS.Rule(s,c)}});ie7CSS.specialize({apply:function(){this.inherit();this.Rule.MATCH=/([^{}]+)(\{[^{}]*\})/g}});ie7CSS.Rule.compare=function(r1,r2){return r1.specificity-r2.specificity};var N=[],I=/#/g,C=/[.:\[]/g,T=/^\w|[\s>+~]\w/g;ie7CSS.Rule.score=function(s){return(s.match(I)||N).length*10000+(s.match(C)||N).length*100+(s.match(T)||N).length};ie7CSS.Rule.simple=function(){return""};ie7CSS.Rule.prototype.specialize({specificity:0,init:function(){this.specificity=ie7CSS.Rule.score(this.selector)}})});
delft/wiki-skins/nixos/ie7/ie7-css2-selectors.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-css2-selectors",function(){cssQuery.addModule("css-level2",function(){selectors[">"]=function(r,f,t,n){var e,i,j;for(i=0;i<f.length;i++){var s=childElements(f[i]);for(j=0;(e=s[j]);j++)if(compareTagName(e,t,n))r.push(e)}};selectors["+"]=function(r,f,t,n){for(var i=0;i<f.length;i++){var e=nextElementSibling(f[i]);if(e&&compareTagName(e,t,n))r.push(e)}};selectors["@"]=function(r,f,a){var t=attributeSelectors[a].test;var e,i;for(i=0;(e=f[i]);i++)if(t(e))r.push(e)};pseudoClasses["first-child"]=function(e){return!previousElementSibling(e)};pseudoClasses["lang"]=function(e,c){c=new RegExp("^"+c,"i");while(e&&!e.getAttribute("lang"))e=e.parentNode;return e&&c.test(e.getAttribute("lang"))};AttributeSelector.NS_IE=/\\:/g;AttributeSelector.PREFIX="@";AttributeSelector.tests={};AttributeSelector.replace=function(m,a,n,c,v){var k=this.PREFIX+m;if(!attributeSelectors[k]){a=this.create(a,c||"",v||"");attributeSelectors[k]=a;attributeSelectors.push(a)}return attributeSelectors[k].id};AttributeSelector.parse=function(s){s=s.replace(this.NS_IE,"|");var m;while(m=s.match(this.match)){var r=this.replace(m[0],m[1],m[2],m[3],m[4]);s=s.replace(this.match,r)}return s};AttributeSelector.create=function(p,t,v){var a={};a.id=this.PREFIX+attributeSelectors.length;a.name=p;t=this.tests[t];t=t?t(this.getAttribute(p),getText(v)):false;a.test=new Function("e","return "+t);return a};AttributeSelector.getAttribute=function(n){switch(n.toLowerCase()){case"id":return"e.id";case"class":return"e.className";case"for":return"e.htmlFor";case"href":if(isMSIE){return"String((e.outerHTML.match(/href=\\x22?([^\\s\\x22]*)\\x22?/)||[])[1]||'')"}}return"e.getAttribute('"+n.replace(N,":")+"')"};AttributeSelector.tests[""]=function(a){return a};AttributeSelector.tests["="]=function(a,v){return a+"=="+Quote.add(v)};AttributeSelector.tests["~="]=function(a,v){return"/(^| )"+regEscape(v)+"( |$)/.test("+a+")"};AttributeSelector.tests["|="]=function(a,v){return"/^"+regEscape(v)+"(-|$)/.test("+a+")"};var _6=parseSelector;parseSelector=function(s){return _6(AttributeSelector.parse(s))}});var AttributeSelector=cssQuery.valueOf("AttributeSelector");var H=/a(#[\w-]+)?(\.[\w-]+)?:(hover|active)/i;var B1=/\s*\{\s*/,B2=/\s*\}\s*/,C=/\s*\,\s*/;var F=/(.*)(:first-(line|letter))/;StyleSheet.prototype.specialize({parse:function(){this.inherit();var o=ie7CSS.rules.length;var ru=this.cssText.split(B2),r;var se,c,i,j;for(i=0;i<ru.length;i++){r=ru[i].split(B1);se=r[0].split(C);c=r[1];for(j=0;j<se.length;j++){se[j]=c?this.createRule(se[j],c):""}ru[i]=se.join("\n")}this.cssText=ru.join("\n");this.rules=ie7CSS.rules.slice(o)},recalc:function(){var r,i;for(i=0;(r=this.rules[i]);i++)r.recalc()},createRule:function(s,c){if(ie7CSS.UNKNOWN.test(s)){var m;if(m=s.match(PseudoElement.MATCH)){return new PseudoElement(m[1],m[2],c)}else if(m=s.match(DynamicRule.MATCH)){if(!isHTML||!H.test(m)||DynamicRule.COMPLEX.test(m)){return new DynamicRule(s,m[1],m[2],m[3],c)}}else return new Rule(s,c)}return s+" {"+c+"}"}});ie7CSS.specialize({rules:[],pseudoClasses:cssQuery.valueOf("pseudoClasses"),dynamicPseudoClasses:{},cache:cssQuery.valueOf("cache"),Rule:Rule,DynamicRule:DynamicRule,PseudoElement:PseudoElement,DynamicPseudoClass:DynamicPseudoClass,apply:function(){var p=this.pseudoClasses+"|before|after|"+this.dynamicPseudoClasses;p=p.replace(/(link|visited)\|/g,"");this.UNKNOWN=new RegExp("[>+~\[]|([:.])[\\w-()]+\\1|:("+p+")");var c="[^\\s(]+\\s*[+~]|@\\d+|:(";Rule.COMPLEX=new RegExp(c+p+")","g");DynamicRule.COMPLEX=new RegExp(c+this.pseudoClasses+")","g");DynamicRule.MATCH=new RegExp("(.*):("+this.dynamicPseudoClasses+")(.*)");PseudoElement.MATCH=/(.*):(before|after).*/;this.inherit()},recalc:function(){this.screen.recalc();this.inherit()},getText:function(s,p){return httpRequest?(loadFile(s.href,p)||s.cssText):this.inherit(s)},addEventHandler:function(e,t,h){addEventHandler(e,t,h)}});function Rule(s,c){this.id=ie7CSS.rules.length;this.className=Rule.PREFIX+this.id;s=(s).match(F)||s||"*";this.selector=s[1]||s;this.selectorText=Rule.simple(this.selector)+"."+this.className+(s[2]||"");this.cssText=c;this.MATCH=new RegExp("\\s"+this.className+"(\\s|$)","g");ie7CSS.rules.push(this);this.init()};Common.specialize({constructor:Rule,toString:function(){return this.selectorText+" {"+this.cssText+"}"},init:DUMMY,add:function(e){e.className+=" "+this.className},remove:function(e){e.className=e.className.replace(this.MATCH,"$1")},recalc:function(){var m=ie7CSS.cache[" *."+this.className]=cssQuery(this.selector);for(i=0;i<m.length;i++)this.add(m[i])}});Rule.PREFIX="ie7_class";Rule.CHILD=/>/g;Rule.simple=function(s){s=AttributeSelector.parse(s);return s.replace(this.COMPLEX,"").replace(this.CHILD," ")};function DynamicRule(s,a,d,t,c){this.attach=a||"*";this.dynamicPseudoClass=ie7CSS.dynamicPseudoClasses[d];this.target=t;this.inherit(s,c)};Rule.specialize({constructor:DynamicRule,recalc:function(){var m=cssQuery(this.attach);for(var i=0;i<m.length;i++){var t=(this.target)?cssQuery(this.target,m[i]):[m[i]];if(t.length)this.dynamicPseudoClass.apply(m[i],t,this)}}});var A=/^attr/;var U=/^url\s*\(\s*([^)]*)\)$/;var M={before0:"beforeBegin",before1:"afterBegin",after0:"afterEnd",after1:"beforeEnd"};var _5=makePath("ie7-content.htc",path)+"?";HEADER+=".ie7_anon{display:none}";function PseudoElement(s,p,c){this.position=p;var co=c.match(PseudoElement.CONTENT),m,e;if(co){co=co[1];m=co.split(/\s+/);for(var i=0;(e=m[i]);i++){m[i]=A.test(e)?{attr:e.slice(5,-1)}:(e.charAt(0)=="'")?getString(e):decode(e)}co=m}this.content=co;this.inherit(s,decode(c))};Rule.specialize({constructor:PseudoElement,toString:function(){return"."+this.className+"{display:inline}"},init:function(){this.match=cssQuery(this.selector);for(var i=0;i<this.match.length;i++){var r=this.match[i].runtimeStyle;if(!r[this.position])r[this.position]={cssText:""};r[this.position].cssText+=";"+this.cssText;if(this.content!=null)r[this.position].content=this.content}},recalc:function(){if(this.content==null)return;for(var i=0;i<this.match.length;i++){this.create(this.match[i])}},create:function(t){var g=t.runtimeStyle[this.position];if(g){var c=[].concat(g.content||"");for(var j=0;j<c.length;j++){if(typeof c[j]=="object"){c[j]=t.getAttribute(c[j].attr)}}c=c.join("");var u=c.match(U);var h=PseudoElement[u?"OBJECT":"ANON"].replace(/%1/,this.className);var cs=g.cssText.replace(/'/g,'"');var po=M[this.position+Number(t.canHaveChildren)];if(u){var p=document.createElement(h);t.insertAdjacentElement(po,p);p.data=_5;addTimer(p,cs,Quote.remove(u[1]))}else{h=h.replace(/%2/,cs).replace(/%3/,c);t.insertAdjacentHTML(po,h)}t.runtimeStyle[this.position]=null}}});PseudoElement.CONTENT=/content\s*:\s*([^;]*)(;|$)/;PseudoElement.OBJECT="<object class='ie7_anon %1' ie7_anon width=100% height=0 type=text/x-scriptlet>";PseudoElement.ANON="<ie7:! class='ie7_anon %1' ie7_anon style='%2'>%3</ie7:!>";function DynamicPseudoClass(n,a){this.name=n;this.apply=a;this.instances={};ie7CSS.dynamicPseudoClasses[n]=this};Common.specialize({constructor:DynamicPseudoClass,register:function(i){var c=i[2];i.id=c.id+i[0].uniqueID;if(!this.instances[i.id]){var t=i[1],j;for(j=0;j<t.length;j++)c.add(t[j]);this.instances[i.id]=i}},unregister:function(i){if(this.instances[i.id]){var c=i[2];var t=i[1],j;for(j=0;j<t.length;j++)c.remove(t[j]);delete this.instances[i.id]}}});ie7CSS.pseudoClasses.toString=function(){var t=[],p;for(p in this){if(this[p].length>1)p+="\\([^)]*\\)";t.push(p)}return t.join("|")};ie7CSS.pseudoClasses["link"]=function(e){return e.currentStyle["ie7-link"]=="link"};ie7CSS.pseudoClasses["visited"]=function(e){return e.currentStyle["ie7-link"]=="visited"};var _4=(appVersion<5.5)?"onmouseover":"onmouseenter";var _3=(appVersion<5.5)?"onmouseout":"onmouseleave";ie7CSS.dynamicPseudoClasses.toString=ie7CSS.pseudoClasses.toString;var _0=new DynamicPseudoClass("hover",function(e){var i=arguments;ie7CSS.addEventHandler(e,_4,function(){_0.register(i)});ie7CSS.addEventHandler(e,_3,function(){_0.unregister(i)})});var _1=new DynamicPseudoClass("focus",function(e){var i=arguments;ie7CSS.addEventHandler(e,"onfocus",function(){_1.unregister(i);_1.register(i)});ie7CSS.addEventHandler(e,"onblur",function(){_1.unregister(i)});if(e==document.activeElement){_1.register(i)}});var _2=new DynamicPseudoClass("active",function(e){var i=arguments;ie7CSS.addEventHandler(e,"onmousedown",function(){_2.register(i)})});addEventHandler(document,"onmouseup",function(){var i=_2.instances,j;for(j in i)_2.unregister(i[j]);i=_0.instances;for(j in i)if(!i[j][0].contains(event.srcElement))_0.unregister(i[j])});ICommon(AttributeSelector);AttributeSelector.specialize({getAttribute:function(n){switch(n.toLowerCase()){case"class":return"e.className.replace(/\\b\\s*ie7_class\\d+/g,'')";case"src":return"(e.pngSrc||e.src)"}return this.inherit(n)}});encoder.add(/::/,":");safeString.add(/\\([\da-fA-F]{1,4})/,function(m,o){m=m[o+1];return"\\u"+"0000".slice(m.length)+m})});
delft/wiki-skins/nixos/ie7/ie7-css3-selectors.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-css3-selectors",function(){cssQuery.addModule("css-level3",function(){selectors["~"]=function(r,f,t,n){var e,i;for(i=0;(e=f[i]);i++){while(e=nextElementSibling(e)){if(compareTagName(e,t,n))r.push(e)}}};pseudoClasses["contains"]=function(e,t){t=new RegExp(regEscape(getText(t)));return t.test(getTextContent(e))};pseudoClasses["root"]=function(e){return e==getDocument(e).documentElement};pseudoClasses["empty"]=function(e){var n,i;for(i=0;(n=e.childNodes[i]);i++){if(thisElement(n)||n.nodeType==3)return false}return true};pseudoClasses["last-child"]=function(e){return!nextElementSibling(e)};pseudoClasses["only-child"]=function(e){e=e.parentNode;return firstElementChild(e)==lastElementChild(e)};pseudoClasses["not"]=function(e,s){var n=cssQuery(s,getDocument(e));for(var i=0;i<n.length;i++){if(n[i]==e)return false}return true};pseudoClasses["nth-child"]=function(e,a){return nthChild(e,a,previousElementSibling)};pseudoClasses["nth-last-child"]=function(e,a){return nthChild(e,a,nextElementSibling)};pseudoClasses["target"]=function(e){return e.id==location.hash.slice(1)};pseudoClasses["checked"]=function(e){return e.checked};pseudoClasses["enabled"]=function(e){return e.disabled===false};pseudoClasses["disabled"]=function(e){return e.disabled};pseudoClasses["indeterminate"]=function(e){return e.indeterminate};AttributeSelector.tests["^="]=function(a,v){return"/^"+regEscape(v)+"/.test("+a+")"};AttributeSelector.tests["$="]=function(a,v){return"/"+regEscape(v)+"$/.test("+a+")"};AttributeSelector.tests["*="]=function(a,v){return"/"+regEscape(v)+"/.test("+a+")"};function nthChild(e,a,t){switch(a){case"n":return true;case"even":a="2n";break;case"odd":a="2n+1"}var ch=childElements(e.parentNode);function _5(i){var i=(t==nextElementSibling)?ch.length-i:i-1;return ch[i]==e};if(!isNaN(a))return _5(a);a=a.split("n");var m=parseInt(a[0]);var s=parseInt(a[1]);if((isNaN(m)||m==1)&&s==0)return true;if(m==0&&!isNaN(s))return _5(s);if(isNaN(s))s=0;var c=1;while(e=t(e))c++;if(isNaN(m)||m==1)return(t==nextElementSibling)?(c<=s):(s>=c);return(c%m)==s}});var firstElementChild=cssQuery.valueOf("firstElementChild");ie7CSS.pseudoClasses["root"]=function(e){return(e==viewport)||(!isHTML&&e==firstElementChild(body))};var _4=new ie7CSS.DynamicPseudoClass("checked",function(e){if(typeof e.checked!="boolean")return;var i=arguments;ie7CSS.addEventHandler(e,"onpropertychange",function(){if(event.propertyName=="checked"){if(e.checked)_4.register(i);else _4.unregister(i)}});if(e.checked)_4.register(i)});var _3=new ie7CSS.DynamicPseudoClass("enabled",function(e){if(typeof e.disabled!="boolean")return;var i=arguments;ie7CSS.addEventHandler(e,"onpropertychange",function(){if(event.propertyName=="disabled"){if(!e.isDisabled)_3.register(i);else _3.unregister(i)}});if(!e.isDisabled)_3.register(i)});var _2=new ie7CSS.DynamicPseudoClass("disabled",function(e){if(typeof e.disabled!="boolean")return;var i=arguments;ie7CSS.addEventHandler(e,"onpropertychange",function(){if(event.propertyName=="disabled"){if(e.isDisabled)_2.register(i);else _2.unregister(i)}});if(e.isDisabled)_2.register(i)});var _1=new ie7CSS.DynamicPseudoClass("indeterminate",function(e){if(typeof e.indeterminate!="boolean")return;var i=arguments;ie7CSS.addEventHandler(e,"onpropertychange",function(){if(event.propertyName=="indeterminate"){if(e.indeterminate)_1.register(i);else _1.unregister(i)}});ie7CSS.addEventHandler(e,"onclick",function(){_1.unregister(i)})});var _0=new ie7CSS.DynamicPseudoClass("target",function(e){var i=arguments;if(!e.tabIndex)e.tabIndex=0;ie7CSS.addEventHandler(document,"onpropertychange",function(){if(event.propertyName=="activeElement"){if(e.id==location.hash.slice(1))_0.register(i);else _0.unregister(i)}});if(e.id==location.hash.slice(1))_0.register(i)});decoder.add(/\|/,"\\:")});
delft/wiki-skins/nixos/ie7/ie7-dhtml.js
deleted
-57
@@ -1,57 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-dhtml", function() {
7
-
8
-/* ---------------------------------------------------------------------
9
- This module is still in development and should not be used.
10
---------------------------------------------------------------------- */
11
-
12
-ie7CSS.specialize("recalc", function() {
13
- this.inherit();
14
- for (var i = 0; i < this.recalcs.length; i++) {
15
- var $recalc = this.recalcs[i];
16
- for (var j = 0; i < $recalc[3].length; i++) {
17
- _addPropertyChangeHandler($recalc[3][j], _getPropertyName($recalc[2]), $recalc[1]);
18
- }
19
- }
20
-});
21
-
22
-// constants
23
-var _PATTERNS = {
24
- width: "(width|paddingLeft|paddingRight|borderLeftWidth|borderRightWidth|borderLeftStyle|borderRightStyle)",
25
- height: "(height|paddingTop|paddingBottom|borderTopHeight|borderBottomHeight|borderTopStyle|borderBottomStyle)"
26
-};
27
-var _PROPERTY_NAMES = {
28
- width: "fixedWidth",
29
- height: "fixedHeight",
30
- right: "width",
31
- bottom: "height"
32
-};
33
-var _DASH_LETTER = /-(\w)/g;
34
-var _PROPERTY_NAME = /\w+/;
35
-
36
-function _addPropertyChangeHandler($element, $propertyName, $fix) {
37
- addEventHandler($element, "onpropertychange", function() {
38
- if (_getPattern($propertyName).test(event.propertyName)) {
39
- _reset($element, $propertyName);
40
- $fix($element);
41
- }
42
- });
43
-};
44
-function _upper($match, $letter) {return $letter.toUpperCase()};
45
-function _getPropertyName($pattern) {
46
- return String(String($pattern).toLowerCase().replace(_DASH_LETTER, _upper).match(_PROPERTY_NAME));
47
-};
48
-function _getPattern($propertyName) {
49
- return eval("/^style." + (_PATTERNS[$propertyName] || $propertyName) + "$/");
50
-};
51
-function _reset($element, $propertyName) {
52
- $element.runtimeStyle[$propertyName] = "";
53
- $propertyName = _PROPERTY_NAMES[$propertyName]
54
- if ($propertyName) $element.runtimeStyle[$propertyName] = "";
55
-};
56
-
57
-});
delft/wiki-skins/nixos/ie7/ie7-dynamic-attributes.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-dynamic-attributes",function(){if(!modules["ie7-css2-selectors"])return;var attributeSelectors=cssQuery.valueOf("attributeSelectors");var parseSelector=cssQuery.valueOf("parseSelector");function DynamicAttribute(s,a,d,t,c){this.attach=a||"*";parseSelector(d);this.dynamicAttribute=attributeSelectors["@"+d];this.target=t;this.inherit(s,c)};ie7CSS.Rule.specialize({constructor:DynamicAttribute,recalc:function(){var m=cssQuery(this.attach);for(var i=0;i<m.length;i++){var t=(this.target)?cssQuery(this.target,m[i]):[m[i]];if(t.length)this.apply(m[i],t)}},apply:function(e,t){var self=this;addEventHandler(e,"onpropertychange",function(){if(event.propertyName==self.dynamicAttribute.name)self.test(e,t)});this.test(e,t)},test:function(e,t){var a=this.dynamicAttribute.test(e)?"add":"remove";for(var i=0;(e=t[i]);i++)this[a](e)}});DynamicAttribute.MATCH=/(.*)(\[[^\]]*\])(.*)/;StyleSheet.prototype.specialize({createRule:function(s,c){var m;if(m=s.match(DynamicAttribute.MATCH)){return new DynamicAttribute(s,m[1],m[2],m[3],c)}else return this.inherit(s,c)}})});
delft/wiki-skins/nixos/ie7/ie7-fixed.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-fixed",function(){ie7CSS.addRecalc("position","fixed",_6,"absolute");ie7CSS.addRecalc("background(-attachment)?","[^};]*fixed",_7);var _10=(quirksMode)?"body":"documentElement";var _8=function(){if(body.currentStyle.backgroundAttachment!="fixed"){if(body.currentStyle.backgroundImage=="none"){body.runtimeStyle.backgroundRepeat="no-repeat";body.runtimeStyle.backgroundImage="url("+BLANK_GIF+")"}body.runtimeStyle.backgroundAttachment="fixed"}_8=DUMMY};var _0=createTempElement("img");function _1(f){return _2.exec(String(f))};var _2=new ParseMaster;_2.add(/Left/,"Top");_2.add(/left/,"top");_2.add(/Width/,"Height");_2.add(/width/,"height");_2.add(/right/,"bottom");_2.add(/X/,"Y");function _3(e){return(e)?isFixed(e)||_3(e.parentElement):false};function setExpression(e,p,ex){setTimeout("document.all."+e.uniqueID+".runtimeStyle.setExpression('"+p+"','"+ex+"')",0)};function _7(e){if(register(_7,e,e.currentStyle.backgroundAttachment=="fixed"&&!e.contains(body))){_8();backgroundLeft(e);backgroundTop(e);_9(e)}};function _9(e){_0.src=e.currentStyle.backgroundImage.slice(5,-2);var p=(e.canHaveChildren)?e:e.parentElement;p.appendChild(_0);setOffsetLeft(e);setOffsetTop(e);p.removeChild(_0)};function backgroundLeft(e){e.style.backgroundPositionX=e.currentStyle.backgroundPositionX;if(!_3(e)){var ex="(parseInt(runtimeStyle.offsetLeft)+document."+_10+".scrollLeft)||0";setExpression(e,"backgroundPositionX",ex)}};eval(_1(backgroundLeft));function setOffsetLeft(e){var p=_3(e)?"backgroundPositionX":"offsetLeft";e.runtimeStyle[p]=getOffsetLeft(e,e.style.backgroundPositionX)-e.getBoundingClientRect().left-e.clientLeft+2};eval(_1(setOffsetLeft));function getOffsetLeft(e,p){switch(p){case"left":case"top":return 0;case"right":case"bottom":return viewport.clientWidth-_0.offsetWidth;case"center":return(viewport.clientWidth-_0.offsetWidth)/2;default:if(PERCENT.test(p)){return parseInt((viewport.clientWidth-_0.offsetWidth)*parseFloat(p)/100)}_0.style.left=p;return _0.offsetLeft}};eval(_1(getOffsetLeft));function _6(e){if(register(_6,e,isFixed(e))){setOverrideStyle(e,"position","absolute");setOverrideStyle(e,"left",e.currentStyle.left);setOverrideStyle(e,"top",e.currentStyle.top);_8();if(ie7Layout)ie7Layout.fixRight(e);_5(e)}};function _5(e,r){positionTop(e,r);positionLeft(e,r,true);if(!e.runtimeStyle.autoLeft&&e.currentStyle.marginLeft=="auto"&&e.currentStyle.right!="auto"){var l=viewport.clientWidth-getPixelWidth(e,e.currentStyle.right)-getPixelWidth(e,e.runtimeStyle._12)-e.clientWidth;if(e.currentStyle.marginRight=="auto")l=parseInt(l/2);if(_3(e.offsetParent))e.runtimeStyle.pixelLeft+=l;else e.runtimeStyle.shiftLeft=l}clipWidth(e);clipHeight(e)};function clipWidth(e){if(e.currentStyle.width!="auto"){var r=e.getBoundingClientRect();var w=e.offsetWidth-viewport.clientWidth+r.left-2;if(w>=0){w=Math.max(getPixelValue(e,e.currentStyle.width)-w,0);setOverrideStyle(e,"width",w)}}};eval(_1(clipWidth));function positionLeft(e,r){if(!r&&PERCENT.test(e.currentStyle.width)){e.runtimeStyle.fixWidth=e.currentStyle.width}if(e.runtimeStyle.fixWidth){e.runtimeStyle.width=getPixelWidth(e,e.runtimeStyle.fixWidth)}if(r){if(!e.runtimeStyle.autoLeft)return}else{e.runtimeStyle.shiftLeft=0;e.runtimeStyle._12=e.currentStyle.left;e.runtimeStyle.autoLeft=e.currentStyle.right!="auto"&&e.currentStyle.left=="auto"}e.runtimeStyle.left="";e.runtimeStyle.screenLeft=getScreenLeft(e);e.runtimeStyle.pixelLeft=e.runtimeStyle.screenLeft;if(!r&&!_3(e.offsetParent)){var ex="runtimeStyle.screenLeft+runtimeStyle.shiftLeft+document."+_10+".scrollLeft";setExpression(e,"pixelLeft",ex)}};eval(_1(positionLeft));function getScreenLeft(e){var s=e.offsetLeft,n=1;if(e.runtimeStyle.autoLeft){s=viewport.clientWidth-e.offsetWidth-getPixelWidth(e,e.currentStyle.right)}if(e.currentStyle.marginLeft!="auto"){s-=getPixelWidth(e,e.currentStyle.marginLeft)}while(e=e.offsetParent){if(e.currentStyle.position!="static")n=-1;s+=e.offsetLeft*n}return s};eval(_1(getScreenLeft));function getPixelWidth(e,v){if(PERCENT.test(v))return parseInt(parseFloat(v)/100*viewport.clientWidth);return getPixelValue(e,v)};eval(_1(getPixelWidth));function _11(){var e=_7.elements;for(var i in e)_9(e[i]);e=_6.elements;for(i in e){_5(e[i],true);_5(e[i],true)}_4=0};var _4;addResize(function(){if(!_4)_4=setTimeout(_11,0)})});
\ No newline at end of file
delft/wiki-skins/nixos/ie7/ie7-graphics.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-graphics",function(){if(appVersion<5.5)return;var A="DXImageTransform.Microsoft.AlphaImageLoader";var F="progid:"+A+"(src='%1',sizingMethod='scale')";var _3=new RegExp((window.IE7_PNG_SUFFIX||"-trans.png")+"$","i");var _0=[];function _2(e){var f=e.filters[A];if(f){f.src=e.src;f.enabled=true}else{e.runtimeStyle.filter=F.replace(/%1/,e.src);_0.push(e)}e.src=BLANK_GIF};function _5(e){e.src=e.pngSrc;e.filters[A].enabled=false};ie7CSS.addFix(/opacity\s*:\s*([\d.]+)/,function(m,o){return"zoom:1;filter:progid:DXImageTransform.Microsoft.Alpha(opacity="+((parseFloat(m[o+1])*100)||1)+")"});var B=/background(-image)?\s*:\s*([^\(};]*)url\(([^\)]+)\)([^;}]*)/;ie7CSS.addFix(B,function(m,o){var u=getString(m[o+3]);return _3.test(u)?"filter:"+F.replace(/scale/,"crop").replace(/%1/,u)+";zoom:1;background"+(m[o+1]||"")+":"+(m[o+2]||"")+"none"+(m[o+4]||""):m[o]});if(ie7HTML){ie7HTML.addRecalc("img,input",function(e){if(e.tagName=="INPUT"&&e.type!="image")return;_4(e);addEventHandler(e,"onpropertychange",function(){if(!_1&&event.propertyName=="src"&&e.src.indexOf(BLANK_GIF)==-1)_4(e)})});var B64=/^data:.*;base64/i;var _7=makePath("ie7-base64.php",path);function _4(e){if(_3.test(e.src)){var i=new Image(e.width,e.height);i.onload=function(){e.width=i.width;e.height=i.height;i=null};i.src=e.src;e.pngSrc=e.src;_2(e)}else if(B64.test(e.src)){e.src=_7+"?"+e.src.slice(5)}};var I=/^image/i;var _6=makePath("ie7-object.htc",path);ie7HTML.addRecalc("object",function(e){if(I.test(e.type)){var o=document.createElement("<object type=text/x-scriptlet>");o.style.width=e.currentStyle.width;o.style.height=e.currentStyle.height;o.data=_6;var u=makePath(e.data,getPath(location.href));e.parentNode.replaceChild(o,e);cssQuery.clearCache("object");addTimer(o,"",u);return o}})}var _1=false;addEventHandler(window,"onbeforeprint",function(){_1=true;for(var i=0;i<_0.length;i++)_5(_0[i])});addEventHandler(window,"onafterprint",function(){for(var i=0;i<_0.length;i++)_2(_0[i]);_1=false})});
delft/wiki-skins/nixos/ie7/ie7-html4.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-html4",function(){if(!isHTML)return;HEADER+="h1{font-size:2em}h2{font-size:1.5em;}h3{font-size:1.17em;}"+"h4{font-size:1em}h5{font-size:.83em}h6{font-size:.67em}";var _0={};ie7HTML=new(Fix.specialize({init:DUMMY,addFix:function(){this.fixes.push(arguments)},apply:function(){for(var i=0;i<this.fixes.length;i++){var m=cssQuery(this.fixes[i][0]);var f=this.fixes[i][1]||_1;for(var j=0;j<m.length;j++)f(m[j])}},addRecalc:function(){this.recalcs.push(arguments)},recalc:function(){for(var i=0;i<this.recalcs.length;i++){var m=cssQuery(this.recalcs[i][0]);var r=this.recalcs[i][1],e;var k=Math.pow(2,i);for(var j=0;(e=m[j]);j++){var u=e.uniqueID;if((_0[u]&k)==0){e=r(e)||e;_0[u]|=k}}}}}));ie7HTML.addFix("abbr");ie7HTML.addRecalc("label",function(e){if(!e.htmlFor){var f=cssQuery("input,textarea",e)[0];if(f){addEventHandler(e,"onclick",function(){f.click()})}}});ie7HTML.addRecalc("button,input",function(e){if(e.tagName=="BUTTON"){var m=e.outerHTML.match(/ value="([^"]*)"/i);e.runtimeStyle.value=(m)?m[1]:""}if(e.type=="submit"){addEventHandler(e,"onclick",function(){e.runtimeStyle.clicked=true;setTimeout("document.all."+e.uniqueID+".runtimeStyle.clicked=false",1)})}});var U=/^(submit|reset|button)$/;ie7HTML.addRecalc("form",function(e){addEventHandler(e,"onsubmit",function(){for(var i=0;i<e.length;i++){if(_2(e[i])){e[i].disabled=true;setTimeout("document.all."+e[i].uniqueID+".disabled=false",1)}else if(e[i].tagName=="BUTTON"&&e[i].type=="submit"){setTimeout("document.all."+e[i].uniqueID+".value='"+e[i].value+"'",1);e[i].value=e[i].runtimeStyle.value}}})});function _2(e){return U.test(e.type)&&!e.disabled&&!e.runtimeStyle.clicked};ie7HTML.addRecalc("img",function(e){if(e.alt&&!e.title)e.title=""});var P=(appVersion<5.5)?"HTML:":"";function _1(e){var f=document.createElement("<"+P+e.outerHTML.slice(1));if(e.outerHTML.slice(-2)!="/>"){var en="</"+e.tagName+">",n;while((n=e.nextSibling)&&n.outerHTML!=en){f.appendChild(n)}if(n)n.removeNode()}e.parentNode.replaceChild(f,e)}});
delft/wiki-skins/nixos/ie7/ie7-ie5.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-if(appVersion<5.5){ANON="HTML:!";var ap=function(f,o,a){f.apply(o,a)};if(''.replace(/^/,String)){var _0=String.prototype.replace;var _1=function(e,r){var m,n="",s=this;while(s&&(m=e.exec(s))){n+=s.slice(0,m.index)+ap(r,this,m);s=s.slice(m.lastIndex)}return n+s};String.prototype.replace=function(e,r){this.replace=(typeof r=="function")?_1:_0;return this.replace(e,r)}}if(!Function.apply){var APPLY="apply-"+Number(new Date);ap=function(f,o,a){var r;o[APPLY]=f;switch(a.length){case 0:r=o[APPLY]();break;case 1:r=o[APPLY](a[0]);break;case 2:r=o[APPLY](a[0],a[1]);break;case 3:r=o[APPLY](a[0],a[1],a[2]);break;case 4:r=o[APPLY](a[0],a[1],a[2],a[3]);break;default:var aa=[],i=a.length-1;do aa[i]="a["+i+"]";while(i--);eval("r=o[APPLY]("+aa+")")}delete o[APPLY];return r};ICommon.valueOf.prototype.inherit=function(){return ap(arguments.callee.caller.ancestor,this,arguments)}}if(![].push)Array.prototype.push=function(){for(var i=0;i<arguments.length;i++){this[this.length]=arguments[i]}return this.length};if(![].pop)Array.prototype.pop=function(){var i=this[this.length-1];this.length--;return i};if(isHTML){HEADER+="address,blockquote,body,dd,div,dt,fieldset,form,"+"frame,frameset,h1,h2,h3,h4,h5,h6,iframe,noframes,object,p,"+"hr,applet,center,dir,menu,pre,dl,li,ol,ul{display:block}"}}
delft/wiki-skins/nixos/ie7/ie7-layout.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-layout",function(){ie7Layout=this;HEADER+="*{boxSizing:content-box}";this.hasLayout=(appVersion<5.5)?function(e){return e.clientWidth}:function(e){return e.currentStyle.hasLayout};this.boxSizing=function(e){if(!ie7Layout.hasLayout(e)){e.style.height="0cm";if(e.currentStyle.verticalAlign=="auto")e.runtimeStyle.verticalAlign="top";_1(e)}};function _1(e){if(e!=viewport&&e.currentStyle.position!="absolute"){collapseMarginTop(e);collapseMarginBottom(e)}};var firstElementChild=cssQuery.valueOf("firstElementChild");var lastElementChild=cssQuery.valueOf("lastElementChild");function collapseMarginTop(e){if(!e.runtimeStyle.marginTop){var p=e.parentElement;if(p&&ie7Layout.hasLayout(p)&&e==firstElementChild(p))return;var f=firstElementChild(e);if(f&&f.currentStyle.styleFloat=="none"&&ie7Layout.hasLayout(f)){collapseMarginTop(f);m=_3(e,e.currentStyle.marginTop);c=_3(f,f.currentStyle.marginTop);if(m<0||c<0){e.runtimeStyle.marginTop=m+c}else{e.runtimeStyle.marginTop=Math.max(c,m)}f.runtimeStyle.marginTop="0px"}}};eval(String(collapseMarginTop).replace(/Top/g,"Bottom").replace(/first/g,"last"));function _3(e,v){return(v=="auto")?0:getPixelValue(e,v)};var U=/^[.\d][\w%]*$/,A=/^(auto|0cm)$/,N="[.\\d]";var applyWidth,applyHeight;function borderBox(e){applyWidth(e);applyHeight(e)};function fixWidth(H){applyWidth=function(e){if(!PERCENT.test(e.currentStyle.width))fixWidth(e);_1(e)};function fixWidth(e,v){if(!e.runtimeStyle.fixedWidth){if(!v)v=e.currentStyle.width;e.runtimeStyle.fixedWidth=(U.test(v))?Math.max(0,getFixedWidth(e,v)):v;setOverrideStyle(e,"width",e.runtimeStyle.fixedWidth)}};function layoutWidth(e){if(!isFixed(e)){var l=e.offsetParent;while(l&&!ie7Layout.hasLayout(l))l=l.offsetParent}return(l||viewport).clientWidth};function getPixelWidth(e,v){if(PERCENT.test(v))return parseInt(parseFloat(v)/100*layoutWidth(e));return getPixelValue(e,v)};var getFixedWidth=function(e,v){var b=e.currentStyle["box-sizing"]=="border-box";var a=0;if(quirksMode&&!b)a+=getBorderWidth(e)+getPaddingWidth(e);else if(!quirksMode&&b)a-=getBorderWidth(e)+getPaddingWidth(e);return getPixelWidth(e,v)+a};function getBorderWidth(e){return e.offsetWidth-e.clientWidth};function getPaddingWidth(e){return getPixelWidth(e,e.currentStyle.paddingLeft)+getPixelWidth(e,e.currentStyle.paddingRight)};eval(String(getPaddingWidth).replace(/padding/g,"margin").replace(/Padding/g,"Margin"));HEADER+="*{minWidth:none;maxWidth:none;min-width:none;max-width:none}";function minWidth(e){if(e.currentStyle["min-width"]!=null){e.style.minWidth=e.currentStyle["min-width"]}if(register(minWidth,e,e.currentStyle.minWidth!="none")){ie7Layout.boxSizing(e);fixWidth(e);resizeWidth(e)}};eval(String(minWidth).replace(/min/g,"max"));ie7Layout.minWidth=minWidth;ie7Layout.maxWidth=maxWidth;function resizeWidth(e){var r=e.getBoundingClientRect();var w=r.right-r.left;if(e.currentStyle.minWidth!="none"&&w<=getFixedWidth(e,e.currentStyle.minWidth)){e.runtimeStyle.width=getFixedWidth(e,e.currentStyle.minWidth)}else if(e.currentStyle.maxWidth!="none"&&w>=getFixedWidth(e,e.currentStyle.maxWidth)){e.runtimeStyle.width=getFixedWidth(e,e.currentStyle.maxWidth)}else{e.runtimeStyle.width=e.runtimeStyle.fixedWidth}};function fixRight(e){if(register(fixRight,e,/^(fixed|absolute)$/.test(e.currentStyle.position)&&getDefinedStyle(e,"left")!="auto"&&getDefinedStyle(e,"right")!="auto"&&A.test(getDefinedStyle(e,"width")))){resizeRight(e);ie7Layout.boxSizing(e)}};ie7Layout.fixRight=fixRight;function resizeRight(e){var l=getPixelWidth(e,e.runtimeStyle._4||e.currentStyle.left);var w=layoutWidth(e)-getPixelWidth(e,e.currentStyle.right)-l-getMarginWidth(e);if(parseInt(e.runtimeStyle.width)==w)return;e.runtimeStyle.width="";if(isFixed(e)||H||e.offsetWidth<w){if(!quirksMode)w-=getBorderWidth(e)+getPaddingWidth(e);if(w<0)w=0;e.runtimeStyle.fixedWidth=w;setOverrideStyle(e,"width",w)}};var _2=0;addResize(function(){var i,w=(_2<viewport.clientWidth);_2=viewport.clientWidth;for(i in minWidth.elements){var e=minWidth.elements[i];var f=(parseInt(e.runtimeStyle.width)==getFixedWidth(e,e.currentStyle.minWidth));if(w&&f)e.runtimeStyle.width="";if(w==f)resizeWidth(e)}for(i in maxWidth.elements){var e=maxWidth.elements[i];var f=(parseInt(e.runtimeStyle.width)==getFixedWidth(e,e.currentStyle.maxWidth));if(!w&&f)e.runtimeStyle.width="";if(w!=f)resizeWidth(e)}for(i in fixRight.elements)resizeRight(fixRight.elements[i])});if(window.IE7_BOX_MODEL!==false){ie7CSS.addRecalc("width",N,quirksMode?applyWidth:_1)}ie7CSS.addRecalc("min-width",N,minWidth);ie7CSS.addRecalc("max-width",N,maxWidth);ie7CSS.addRecalc("right",N,fixRight)};ie7CSS.addRecalc("border-spacing",N,function(e){if(e.currentStyle.borderCollapse!="collapse"){e.cellSpacing=getPixelValue(e,e.currentStyle["border-spacing"])}});ie7CSS.addRecalc("box-sizing","content-box",this.boxSizing);ie7CSS.addRecalc("box-sizing","border-box",borderBox);var _0=new ParseMaster;_0.add(/Width/,"Height");_0.add(/width/,"height");_0.add(/Left/,"Top");_0.add(/left/,"top");_0.add(/Right/,"Bottom");_0.add(/right/,"bottom");eval(_0.exec(String(fixWidth)));fixWidth();fixHeight(true)});
delft/wiki-skins/nixos/ie7/ie7-load.htc
deleted
-1
@@ -1 +0,0 @@
1
-<component lightweight="true"><attach event="ondocumentready" onevent="IE7.init()"/></component>
delft/wiki-skins/nixos/ie7/ie7-object.htc
deleted
-12
@@ -1,12 +0,0 @@
1
-<html>
2
-<!--
3
- IE7, version 0.9 (alpha) (2005-08-19)
4
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
5
- License: http://creativecommons.org/licenses/LGPL/2.1/
6
--->
7
-<head>
8
-<style type="text/css">body{margin:0}</style>
9
-<script type="text/javascript">public_description=new function(){var l=false;this.ie7_anon=true;this.load=function(o,c,u){if(l)return;l=true;function _0(t,p){t.style[p]=o.currentStyle[p]};var p=o;while(p&&p.currentStyle.backgroundColor=="transparent"){p=p.parentElement}if(p)body.style.backgroundColor=p.currentStyle.backgroundColor;_0(body,"backgroundImage");_0(body,"backgroundRepeat");_0(body,"backgroundPositionX");_0(body,"backgroundPositionY");_0(body,"fontFamily");_0(body,"fontSize");_0(wrapper,"paddingTop");_0(wrapper,"paddingRight");_0(wrapper,"paddingBottom");_0(wrapper,"paddingLeft");image.width=o.clientWidth;image.height=o.clientHeight;var B64=/^data:.*;base64/i,P=/.png$/i;if(B64.test(u))u="ie7-base64.php"+"?"+u.slice(5);if(P.test(u)&&!/MSIE 5.0/.test(navigator.userAgent)){image.src="blank.gif";image.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+u+"',sizingMethod='scale')"}else{image.src=u}o.style.width=body.scrollWidth;o.style.height=body.scrollHeight}};</script>
10
-</head>
11
-<body id="body"><div id="wrapper"><img id="image"></div></body>
12
-</html>
delft/wiki-skins/nixos/ie7/ie7-overflow.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-overflow",function(){var S={backgroundColor:"transparent",backgroundImage:"none",backgroundPositionX:null,backgroundPositionY:null,backgroundRepeat:null,borderTopWidth:0,borderRightWidth:0,borderBottomWidth:0,borderLeftStyle:"none",borderTopStyle:"none",borderRightStyle:"none",borderBottomStyle:"none",borderLeftWidth:0,height:null,marginTop:0,marginBottom:0,marginRight:0,marginLeft:0,width:"100%"};function _3(p,s,t){t.style[p]=s.currentStyle[p];if(S[p]!=null){s.runtimeStyle[p]=S[p]}};ie7CSS.addRecalc("overflow","visible",function(e){if(e.parentNode.ie7_wrapper)return;if(ie7Layout&&e.currentStyle["max-height"]!="auto"){ie7Layout.maxHeight(e)}if(e.currentStyle.marginLeft=="auto")e.style.marginLeft=0;if(e.currentStyle.marginRight=="auto")e.style.marginRight=0;var w=document.createElement(ANON);w.ie7_wrapper=true;for(var p in S)_3(p,e,w);w.style.display="block";w.style.position="relative";e.runtimeStyle.position="absolute";e.parentNode.insertBefore(w,e);w.appendChild(e)});cssQuery.addModule("ie7-overflow",function(){function _0(e){return(e&&e.ie7_wrapper)?e.firstChild:e};var _2=previousElementSibling;previousElementSibling=function(e){return _0(_2(e))};var _1=nextElementSibling;nextElementSibling=function(e){return _0(_1(e))};selectors[" "]=function(r,f,t,n){var e,i,j;for(i=0;i<f.length;i++){var s=getElementsByTagName(f[i],t,n);for(j=0;(e=_0(s[j]));j++){if(thisElement(e)&&(!n||compareNamespace(e,n)))r.push(e)}}};selectors[">"]=function(r,f,t,n){var e,i,j;for(i=0;i<f.length;i++){var s=childElements(f[i]);for(j=0;(e=_0(s[j]));j++){if(compareTagName(e,t,n))r.push(e)}}}})});
delft/wiki-skins/nixos/ie7/ie7-quirks.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-quirks",function(){if(quirksMode){var F="xx-small,x-small,small,medium,large,x-large,xx-large".split(",");for(var i=0;i<F.length;i++){F[F[i]]=F[i-1]||"0.67em"}ie7CSS.addFix(new RegExp("(font(-size)?\\s*:\\s*)([\\w\\-\\.]+)"),function(m,o){return m[o+1]+(F[m[o+3]]||m[o+3])});if(appVersion<6){var N=/^\-/,L=/(em|ex)$/i;var EM=/em$/i,EX=/ex$/i;function _2(e){var s=1;_0.style.fontFamily=e.currentStyle.fontFamily;_0.style.lineHeight=e.currentStyle.lineHeight;while(e!=body){var f=e.currentStyle["ie7-font-size"];if(f){if(EM.test(f))s*=parseFloat(f);else if(PERCENT.test(f))s*=(parseFloat(f)/100);else if(EX.test(f))s*=(parseFloat(f)/2);else{_0.style.fontSize=f;return 1}}e=e.parentElement}return s};var _0=createTempElement();getPixelValue=function(e,v){if(PIXEL.test(v||0))return parseInt(v||0);var scale=N.test(v)?-1:1;if(L.test(v))scale*=_2(e);_0.style.width=(scale<0)?v.slice(1):v;body.appendChild(_0);v=scale*_0.offsetWidth;_0.removeNode();return parseInt(v)};HEADER=HEADER.replace(/(font(-size)?\s*:\s*([^\s;}\/]*))/gi,"ie7-font-size:$3;$1");ie7CSS.addFix(/cursor\s*:\s*pointer/,"cursor:hand");ie7CSS.addFix(/display\s*:\s*list-item/,"display:block")}function getPaddingWidth(e){return getPixelValue(e,e.currentStyle.paddingLeft)+getPixelValue(e,e.currentStyle.paddingRight)};function _1(e){if(appVersion<5.5&&ie7Layout)ie7Layout.boxSizing(e.parentElement);var p=e.parentElement;var m=p.offsetWidth-e.offsetWidth-getPaddingWidth(p);var a=(e.currentStyle["ie7-margin"]&&e.currentStyle.marginRight=="auto")||e.currentStyle["ie7-margin-right"]=="auto";switch(p.currentStyle.textAlign){case"right":m=(a)?parseInt(m/2):0;e.runtimeStyle.marginRight=parseInt(m)+"px";break;case"center":if(a)m=0;default:if(a)m=parseInt(m/2);e.runtimeStyle.marginLeft=parseInt(m)+"px"}};ie7CSS.addRecalc("margin(-left|-right)?","[^};]*auto",function(e){if(register(_1,e,e.parentElement&&e.currentStyle.display=="block"&&e.currentStyle.marginLeft=="auto"&&e.currentStyle.position!="absolute")){_1(e)}});addResize(function(){for(var i in _1.elements){e=_1.elements[i];e.runtimeStyle.marginLeft=e.runtimeStyle.marginRight="";_1(e)}})}});
delft/wiki-skins/nixos/ie7/ie7-recalc.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-recalc",function(){C=/\sie7_class\d+/g;function _0(e){e.className=e.className.replace(C,"")};function _1(e){e.runtimeStyle.cssText=""};ie7CSS.specialize({elements:{},handlers:[],reset:function(){this.removeEventHandlers();var e=this.elements;for(var i in e)_1(e[i]);this.elements={};if(this.Rule){var e=this.Rule.elements;for(var i in e)_0(e[i]);this.Rule.elements={}}},reload:function(){ie7CSS.rules=[];this.getInlineStyles();this.screen.load();if(this.print)this.print.load();this.refresh();this.trash()},addRecalc:function(p,t,h,r){this.inherit(p,t,function(e){h(e);ie7CSS.elements[e.uniqueID]=e},r)},recalc:function(){this.reset();this.inherit()},addEventHandler:function(e,t,h){e.attachEvent(t,h);this.handlers.push(arguments)},removeEventHandlers:function(){var h;while(h=this.handlers.pop()){removeEventHandler(h[0],h[1],h[2])}},getInlineStyles:function(){var st=document.getElementsByTagName("style"),s;for(var i=st.length-1;(s=st[i]);i--){if(!s.disabled&&!s.ie7){var c=s.c||s.innerHTML;this.styles.push(c);s.c=c}}},trash:function(){var s,i;for(i=0;i<styleSheets.length;i++){s=styleSheets[i];if(!s.ie7&&!s.c){s.c=s.cssText}}this.inherit()},getText:function(s){return s.c||this.inherit(s)}});addEventHandler(window,"onunload",function(){ie7CSS.removeEventHandlers()});if(ie7CSS.Rule){ie7CSS.Rule.elements={};ie7CSS.Rule.prototype.specialize({add:function(e){this.inherit(e);ie7CSS.Rule.elements[e.uniqueID]=e}});ie7CSS.PseudoElement.hash={};ie7CSS.PseudoElement.prototype.specialize({create:function(t){var k=this.selector+":"+t.uniqueID;if(!ie7CSS.PseudoElement.hash[k]){ie7CSS.PseudoElement.hash[k]=true;this.inherit(t)}}})}if(isHTML&&ie7HTML){ie7HTML.specialize({elements:{},addRecalc:function(s,h){this.inherit(s,function(e){if(!ie7HTML.elements[e.uniqueID]){h(e);ie7HTML.elements[e.uniqueID]=e}})}})}document.recalc=function(reload){if(ie7CSS.screen){if(reload)ie7CSS.reload();recalc()}}});
delft/wiki-skins/nixos/ie7/ie7-server.css
deleted
-44
@@ -1,44 +0,0 @@
1
-body, td, dd {font: 10pt Verdana, Arial, Helvetica, sans-serif; color: black;}
2
-body {margin: 8px; background: #333;}
3
-h1 {margin: 0;}
4
-h1 a:hover {background-color: transparent;}
5
-h2 {font-size: 1.75em;}
6
-h3 {font-size: 1.1em;}
7
-p.footnote {font-family: "Times New Roman", Times, serif; font-style: italic;}
8
-a:active {color: #ff0000;}
9
-a:link {color: #0a6cce;}
10
-a:visited {color: #0a6cce;}
11
-code, *.code {font-family: monospace; font-size: 100%; font-style: normal; white-space: nowrap;
12
- padding: 0 1px; background: #f2f3f8; border: #d6d9e9 1px solid;}
13
-code.box {display: block; padding: 10px; margin: 0.5em 0;}
14
-ul {list-style-type: square;}
15
-dd {margin: .2em 0 .5em 1em;}
16
-dl.library dt {display: list-item; margin-left: 3em; list-style-type: square;}
17
-dl.library dd {font-style: italic; margin-left: 3em;}
18
-dt {font-weight: bold;}
19
-dt.pack {color: brown;}
20
-a img {border-style: none;}
21
-hr {height: 1px; color: #000; border-style: solid;}
22
-hr.short {height: 2px; width: 100px;}
23
-div.document {background: #eef; padding: 20px 20px 5px 20px; width: 600px; border: 1px solid black;}
24
-hr {border-bottom-width: 0px;}
25
-div.header hr {color: #0a6cce; background-color: #0a6cce;}
26
-div.footer hr {color: #898e79; background-color: #898e79; }
27
-div.header, div.header a:link, div.header a:visited, h3 a:link, h3 a:visited {text-decoration: none;}
28
-a:hover {color: #fff; background-color: #0a6cce; text-decoration: none;}
29
-div.footer a:hover {background-color: transparent; text-decoration: none;}
30
-div.header .menu {text-align: right;}
31
-div.content {min-height: 100px;}
32
-div.footer {font-size: x-small; margin-top: 8px;}
33
-div.footnote {font-family: "times new roman", times; font-style: italic; margin-top: 10px;}
34
-#license {margin-top: 5px; font-size: xx-small;}
35
-table {border-top: 1px solid #000; border-left: 1px solid #000;}
36
-th {background-color: #fff; text-align: left;}
37
-th, td {border-right: 1px solid #000; border-bottom: 1px solid #000;}
38
-th.small {width: 100px;}
39
-th.medium {width: 200px;}
40
-th.large {width: 270px;}
41
-th.x-large {width: 408px;}
42
-table.fixed {table-layout: fixed;}
43
-span.comment {color: #666;}
44
-
delft/wiki-skins/nixos/ie7/ie7-squish.js
deleted
-45
@@ -1,45 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-IE7.addModule("ie7-squish", function() {
7
-
8
-/* ---------------------------------------------------------------------
9
-
10
- Squish some IE bugs!
11
-
12
- Some of these bug fixes may have adverse effects so they are
13
- not included in the standard library. Add your own if you want.
14
-
15
- -dean
16
-
17
---------------------------------------------------------------------- */
18
-
19
-// @NOTE: ie7Layout.boxSizing is the same as the "Holly Hack"
20
-
21
-// "doubled margin" bug
22
-// http://www.positioniseverything.net/explorer/doubled-margin.html
23
-ie7CSS.addFix(/float\s*:\s*(left|right)/, "display:inline;$1");
24
-
25
-if (ie7Layout) {
26
- // "peekaboo" bug
27
- // http://www.positioniseverything.net/explorer/peekaboo.html
28
- if (appVersion >= 6) ie7CSS.addRecalc("float", "left|right", function($element) {
29
- ie7Layout.boxSizing($element.parentElement);
30
- // "doubled margin" bug
31
- $element.runtimeStyle.display = "inline";
32
- });
33
-
34
- // "unscrollable content" bug
35
- // http://www.positioniseverything.net/explorer/unscrollable.html
36
- ie7CSS.addRecalc("position", "absolute|fixed", function($element) {
37
- if ($element.offsetParent && $element.offsetParent.currentStyle.position == "relative")
38
- ie7Layout.boxSizing($element.offsetParent);
39
- });
40
-}
41
-
42
-//# // get rid of Microsoft's pesky image toolbar
43
-//# if (!complete) document.write('<meta http-equiv="imagetoolbar" content="no">');
44
-
45
-});
delft/wiki-skins/nixos/ie7/ie7-standard-p.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('y(!26.1F)11 7(){2C{26.1F=8;6 2s=8.24=11 3b;8.1g=7(){z"1F 4x 0.9 (ad)"};6 5T=/5T/.Z(2y.5h.7C);6 31=(5T)?7(m){26.31(1F+"\\n\\n"+m)}:2s;6 29=ac.29.19(/ab (\\d\\.\\d)/)[1];6 2m=16.aa!="a9";y(/a8/.Z(2y.5h.7C)||29<5||!/^a7/.Z(16.2F.2a))z;6 33=16.5W=="33";6 1s,1K;6 2F=16.2F,1X,1J,1R=16.1R;6 4E="!";6 3Q={};6 2G=1z;1F.24=7(n,s){y(!3Q[n]){y(2G)1k("s="+23(s));3Q[n]=11 s()}};6 R=/^[\\w\\.]+[^:]*$/;7 1Z(h,p){y(R.Z(h))h=(p||"")+h;z h};7 3F(h,p){h=1Z(h,p);z h.1q(0,h.7a("/")+1)};6 s=16.7B[16.7B.K-1];2C{1k(s.7j)}2j(i){}6 2k=3F(s.1l);6 2v;2C{6 l=(a6()>=5)?"a5":"5n";2v=11 a4(l+".a3")}2j(i){}6 4A={};7 3T(h,p){2C{h=1Z(h,p);y(!4A[h]){2v.a2("a1",h,1z);2v.a0();y(2v.7A==0||2v.7A==9Z){4A[h]=2v.9Y}}}2j(i){31("4B [1]: 5O 9X 9W "+h)}5U{z 4A[h]||""}};6 4i=1Z("9V.9U",2k);7 2o(1w){y(1w!=1U){1w.1T=1t.1C.1T;1w.1e=1t.1C.1e}z 1w};2o.1e=7(p,c){y(!p)p={};y(!c)c=p.1h;y(c=={}.1h)c=11 3b("8.1T()");c.1i=11 3b("z 8");c.1i.1C=11 8.1i;c.1i.1C.1e(p);c.1C=11 c.1i;c.1i.1C.1h=c.1C.1h=c;c.2E=8;c.1e=1a.5P;c.4z=8.4z;z c};2o.1i=11 3b("z 8");2o.1i.1C={1h:2o,1T:7(){z 1a.5P.9T.2E.2q(8,1a)},1e:7(1w){y(8==8.1h.1C&&8.1h.1e){z 8.1h.1i.1C.1e(1w)}O(6 i 28 1w){34(i){1m"1h":1m"1g":1m"1i":5M}y(3Y 1w[i]=="7"&&1w[i]!=8[i]){1w[i].2E=8[i]}8[i]=1w[i]}y(1w.1g!=8.1g&&1w.1g!={}.1g){1w.1g.2E=8.1g;8.1g=1w.1g}z 8}};7 1t(){};8.1t=2o.1e({1h:1t,1g:7(){z"[9S "+(8.1h.1x||"9R")+"]"},9Q:7(2i){z 8.1h==2i||2i.4z(8.1h)}});1t.1x="1t";1t.2E=1U;1t.4z=7(2i){1D(2i&&2i.2E!=8)2i=2i.2E;z 7q(2i)};1t.1i.2E=2o;3u 8.1t;6 5x=1t.1e({1h:7(){8.3L=[];8.1Q=[]},1S:2s});y(29<5.5)1k(3T("17-9P.5X",2k));6 5S=1z;1F.1S=7(){2C{y(5S)z;5S=33=1o;1X=16.1X;1J=(2m)?1X:2F;y(2l&&1s)1s.2q();V.2q();1u();31("2G 9O")}2j(e){31("4B [2]: "+e.5V)}};6 1Q=[];7 1n(r){1Q.1b(r)};7 1u(){14.5g();y(2l&&1s)1s.1u();V.1u();O(6 i=0;i<1Q.K;i++)1Q[i]()};7 2U(){6 E=0,R=1,L=2;6 G=/\\(/g,S=/\\$\\d/,I=/^\\$\\d+$/,T=/([\'"])\\1\\+(.*)\\+\\1\\1$/,7t=/\\\\./g,Q=/\'/,7z=/\\3S[^\\3S]*\\3S/g;6 3N=8;8.15=7(e,r){y(!r)r="";6 l=(5R(23(e)).19(G)||"").K+1;y(S.Z(r)){y(I.Z(r)){r=25(r.1q(1))-1}1d{6 i=l;6 q=Q.Z(5R(r))?\'"\':"\'";1D(i)r=r.2O("$"+i--).2p(q+"+a[o+"+i+"]+"+q);r=11 3b("a,o","z"+q+r.13(T,"$1")+q)}}7y(e||"/^$/",r,l)};8.2V=7(s){3R.K=0;z 7u(7v(s,8.4y).13(11 1N(30,8.5Q?"5D":"g"),7w),8.4y).13(7z,"")};8.72=7(){30.K=0};6 3R=[];6 30=[];6 7x=7(){z"("+23(8[E]).1q(1,-1)+")"};30.1g=7(){z 8.2p("|")};7 7y(){1a.1g=7x;30[30.K]=1a}7 7w(){y(!1a[0])z"";6 i=1,j=0,p;1D(p=30[j++]){y(1a[i]){6 r=p[R];34(3Y r){1m"7":z r(1a,i);1m"9N":z 1a[r+i]}6 d=(1a[i].6F(3N.4y)==-1)?"":"\\3S"+1a[i]+"\\3S";z d+r}1d i+=p[L]}};7 7v(s,e){z e?s.13(11 1N("\\\\"+e+"(.)","g"),7(m,c){3R[3R.K]=c;z e}):s};7 7u(s,e){6 i=0;z e?s.13(11 1N("\\\\"+e,"g"),7(){z e+(3R[i++]||"")}):s};7 5R(s){z s.13(7t,"")}};2U.1C={1h:2U,5Q:1z,4y:""};1t.1e(2U.1C);6 3M=2U.1e({5Q:1o});6 14=7(){6 4x="2.0.2";6 C=/\\s*,\\s*/;6 14=7(s,1E){2C{6 m=[];6 u=1a.5P.5I&&!1E;6 b=(1E)?(1E.1h==7n)?1E:[1E]:[16];6 2f=45(s).2O(C),i;O(i=0;i<2f.K;i++){s=5J(2f[i]);y(4P&&s.1q(0,3).2p("")==" *#"){s=s.1q(2);1E=7o([],b,s[1])}1d 1E=b;6 j=0,t,f,a,c="";1D(j<s.K){t=s[j++];f=s[j++];c+=t+f;a="";y(s[j]=="("){1D(s[j++]!=")"&&j<s.K){a+=s[j]}a=a.1q(0,-1);c+="("+a+")"}1E=(u&&2e[c])?2e[c]:7m(1E,t,f,a);y(u)2e[c]=1E}m=m.4J(1E)}3u 14.5O;z m}2j(e){14.5O=e;z[]}};14.1g=7(){z"7 14() {\\n [4x "+4x+"]\\n}"};6 2e={};14.5I=1z;14.5g=7(s){y(s){s=5J(s).2p("");3u 2e[s]}1d 2e={}};6 3Q={};6 2G=1z;14.24=7(n,s){y(2G)1k("s="+23(s));3Q[n]=11 s()};14.1i=7(c){z c?1k(c):8};6 1V={};6 1B={};6 1p={19:/\\[([\\w-]+(\\|[\\w-]+)?)\\s*(\\W?=)?\\s*([^\\]]*)\\]/};6 2R=[];1V[" "]=7(r,f,t,n){6 e,i,j;O(i=0;i<f.K;i++){6 s=4w(f[i],t,n);O(j=0;(e=s[j]);j++){y(2D(e)&&5K(e,n))r.1b(e)}}};1V["#"]=7(r,f,i){6 e,j;O(j=0;(e=f[j]);j++)y(e.1c==i)r.1b(e)};1V["."]=7(r,f,c){c=11 1N("(^|\\\\s)"+c+"(\\\\s|$)");6 e,i;O(i=0;(e=f[i]);i++)y(c.Z(e.1x))r.1b(e)};1V[":"]=7(r,f,p,a){6 t=1B[p],e,i;y(t)O(i=0;(e=f[i]);i++)y(t(e,a))r.1b(e)};1B["21"]=7(e){6 d=5L(e);y(d.5N)O(6 i=0;i<d.5N.K;i++){y(d.5N[i]==e)z 1o}};1B["37"]=7(e){};6 2D=7(e){z(e&&e.7k==1&&e.2W!="!")?e:1U};6 4S=7(e){1D(e&&(e=e.9M)&&!2D(e))5M;z e};6 47=7(e){1D(e&&(e=e.6W)&&!2D(e))5M;z e};6 3l=7(e){z 2D(e.7s)||47(e.7s)};6 5t=7(e){z 2D(e.7r)||4S(e.7r)};6 6q=7(e){6 c=[];e=3l(e);1D(e){c.1b(e);e=47(e)}z c};6 4P=1o;6 5H=7(e){6 d=5L(e);z(3Y d.7p=="9L")?/\\.9K$/i.Z(d.9J):7q(d.7p=="9I 9H")};6 5L=7(e){z e.9G||e.16};6 4w=7(e,t){z(t=="*"&&e.1Y)?e.1Y:e.4w(t)};6 4T=7(e,t,n){y(t=="*")z 2D(e);y(!5K(e,n))z 1z;y(!5H(e))t=t.9F();z e.2W==t};6 5K=7(e,n){z!n||(n=="*")||(e.9E==n)};6 9D=7(e){z e.9C};7 7o(r,f,1c){6 m,i,j;O(i=0;i<f.K;i++){y(m=f[i].1Y.9B(1c)){y(m.1c==1c)r.1b(m);1d y(m.K!=1U){O(j=0;j<m.K;j++){y(m[j].1c==1c)r.1b(m[j])}}}}z r};y(![].1b)7n.1C.1b=7(){O(6 i=0;i<1a.K;i++){8[8.K]=1a[i]}z 8.K};6 N=/\\|/;7 7m(1E,t,f,a){y(N.Z(f)){f=f.2O(N);a=f[0];f=f[1]}6 r=[];y(1V[t]){1V[t](r,1E,f,a)}z r};6 S=/^[^\\s>+~]/;6 7l=/[\\s#.:>+~()@]|[^\\s#.:>+~()@]+/g;7 5J(s){y(S.Z(s))s=" "+s;z s.19(7l)||[]};6 W=/\\s*([\\s>+~(),]|^|$)\\s*/g;6 I=/([\\s>+~,]|[^(]\\+|^)([#.:@])/g;6 45=7(s){z s.13(W,"$1").13(I,"$1*$2")};6 2c={1g:7(){z"\'"},19:/^(\'[^\']*\')|("[^"]*")$/,Z:7(s){z 8.19.Z(s)},15:7(s){z 8.Z(s)?s:8+s+8},3v:7(s){z 8.Z(s)?s.1q(1,-1):s}};6 2w=7(t){z 2c.3v(t)};6 E=/([\\/()[\\]?{}|*+-])/g;7 4O(s){z s.13(E,"\\\\$1")};2G=1o;z 14}();14.5I=1o;14.24("17",7(){2D=7(e){z(e&&e.7k==1&&e.2W!="!"&&!e.2K)?e:1U}});14.1i("2w=1a[1]",42);6 2l=!14.1i("5H(1a[1])",2F);6 2r=":21{17-21:21}:37{17-21:37}"+(2l?"":"*{6Q:0}");6 V=11(5x.1e({5B:11 3M,2P:"",2Y:"",5F:[],1S:7(){8.5G();8.4t()},4t:7(){V.3O.18=2r+8.2P+8.2Y},7i:7(){6 3P=16.4w("1r"),s;O(6 i=3P.K-1;(s=3P[i]);i--){y(!s.3m&&!s.17){8.5F.1b(s.7j)}}},2q:7(){8.7i();8.4t();11 3y("2P");8.7g()},3i:7(e,r){8.5B.15(e,r)},1u:7(){6 R=/7h\\d+/g;6 s=2r.19(/[{,]/g).K;6 3P=s+(8.2P.18.19(/\\{/g)||"").K;6 2Q=8.3O.2t,r;6 4v,c,4u,e,i,j,k,1c;O(i=s;i<3P;i++){r=2Q[i];y(r&&(4v=r.1r.18.19(R))){4u=14(r.4M);y(4u.K)O(j=0;j<4v.K;j++){1c=4v[j];c=V.1Q[1c.1q(10)][2];O(k=0;(e=4u[k]);k++){y(e.D[1c])c(e)}}}}},1n:7(p,t,h,r){t=11 1N("([{;\\\\s])"+p+"\\\\s*:\\\\s*"+t+"[^;}]*");6 i=8.1Q.K;y(r)r=p+":"+r;8.3i(t,7(m,o){z(r?m[o+1]+r:m[o])+";17-"+m[o].1q(1)+";7h"+i+":1"});8.1Q.1b(1a);z i},2w:7(s){z s.18||""},5G:7(){y(33||!2l)16.5G();1d 16.9A("<1r 17=1o></1r>");8.3O=1R[1R.K-1];8.3O.17=1o;8.3O.18=2r},7g:7(){O(6 i=0;i<1R.K;i++){y(!1R[i].17&&1R[i].18){1R[i].18=""}}}}));7 3y(m){8.2Z=m;8.3q();V[m]=8;V.4t()};1t.1e({1h:3y,1g:7(){z"@2Z "+8.2Z+"{"+8.18+"}"},1u:2s,3q:7(){8.18="";8.2w();8.38();8.18=41(8.18);f={}},2w:7(){6 7e=[].4J(V.5F);6 M=/@2Z\\s+([^{]*)\\{([^@]+\\})\\s*\\}/5D;6 A=/\\9z\\b|^$/i,S=/\\9y\\b/i,P=/\\9x\\b/i;7 7d(c,m){4s.v=m;z c.13(M,4s)};7 4s(9w,m,c){m=5E(m);34(m){1m"2P":1m"2Y":y(m!=4s.v)z"";1m"1Y":z c}z""};7 5E(m){y(A.Z(m))z"1Y";1d y(S.Z(m))z(P.Z(m))?"1Y":"2P";1d y(P.Z(m))z"2Y"};6 3N=8;7 5C(s,p,m,l){6 c="";y(!l){m=5E(s.2Z);l=0}y(m=="1Y"||m==3N.2Z){y(l<3){O(6 i=0;i<s.7f.K;i++){c+=5C(s.7f[i],3F(s.2u,p),m,l+1)}}c+=79(s.2u?7c(s,p):7e.77()||"");c=7d(c,3N.2Z)}z c};6 f={};7 7c(s,p){6 u=1Z(s.2u,p);y(f[u])z"";f[u]=(s.3m)?"":7b(V.2w(s,p),3F(s.2u,p));z f[u]};6 U=/(43\\s*\\(\\s*[\'"]?)([\\w\\.]+[^:\\)]*[\'"]?\\))/5D;7 7b(c,p){z c.13(U,"$1"+p.1q(0,p.7a("/")+1)+"$2")};O(6 i=0;i<1R.K;i++){y(!1R[i].3m&&!1R[i].17){8.18+=5C(1R[i])}}},38:7(){8.18=V.5B.2V(8.18)},1u:2s});6 2c=14.1i("2c");6 4r=[];7 79(c){z 2n.2V(3r.2V(c))};7 5A(m,o){z 2c+(4r.1b(m[o])-1)+2c};7 42(v){z 2c.Z(v)?1k(4r[1k(v)]):v};6 2n=11 3M;2n.15(/\\/\\*[^*]*\\*+([^\\/][^*]*\\*+)*\\//);2n.15(/\'[^\']*\'/,5A);2n.15(/"[^"]*"/,5A);2n.15(/\\s+/," ");2n.15(/@(9v|9u)[^;\\n]+[;\\n]|<!\\-\\-|\\-\\->/);6 3r=11 3M;3r.15(/\\\\\'/,"\\\\9t");3r.15(/\\\\"/,"\\\\46");6 5z=11 3M;5z.15(/\'(\\d+)\'/,78);7 41(c){z 5z.2V(c)};7 78(m,o){z 4r[m[o+1]]};6 5y=[];7 4U(h){1n(h);1j(26,"9s",h)};7 1j(e,t,h){e.9r(t,h);5y.1b(1a)};7 76(e,t,h){2C{e.9q(t,h)}2j(i){}};1j(26,"9p",7(){6 h;1D(h=5y.77()){76(h[0],h[1],h[2])}});7 20(h,e,c){y(!h.1O)h.1O={};y(c)h.1O[e.2a]=e;1d 3u h.1O[e.2a];z c};1j(26,"6z",7(){y(!V.2Y)11 3y("2Y");V.2Y.1u()});6 75=/^\\d+(9o)?$/i;6 3d=/^\\d+%$/;6 3c=7(e,v){y(75.Z(v))z 25(v);6 s=e.1r.1f;6 r=e.J.1f;e.J.1f=e.D.1f;e.1r.1f=v||0;v=e.1r.4e;e.1r.1f=s;e.J.1f=r;z v};7 6x(t){6 e=16.3X(t||"2M");e.1r.18="1y:3C;6R:0;4K:9n;3G:1M;9m:9l(0 0 0 0);1f:-9k";e.2K=1o;z e};6 4q="17-";7 3D(e){z e.D["17-1y"]=="2z"};7 4o(e,p){z e.D[4q+p]||e.D[p]};7 2T(e,p,v){y(e.D[4q+p]==1U){e.J[4q+p]=e.D[p]}e.J[p]=v};7 4H(o,c,u){6 t=9j(7(){2C{y(!o.3q)z;o.3q(o,c,u);74(t)}2j(i){74(t)}},10)};1F.24("17-9i",7(){y(!2l)z;2r+="9h{3p-3o:9g}9f{3p-3o:1.9e;}9d{3p-3o:1.9c;}"+"9b{3p-3o:9a}99{3p-3o:.98}97{3p-3o:.96}";6 5w={};1s=11(5x.1e({1S:2s,3i:7(){8.3L.1b(1a)},2q:7(){O(6 i=0;i<8.3L.K;i++){6 m=14(8.3L[i][0]);6 f=8.3L[i][1]||6X;O(6 j=0;j<m.K;j++)f(m[j])}},1n:7(){8.1Q.1b(1a)},1u:7(){O(6 i=0;i<8.1Q.K;i++){6 m=14(8.1Q[i][0]);6 r=8.1Q[i][1],e;6 k=4g.95(2,i);O(6 j=0;(e=m[j]);j++){6 u=e.2a;y((5w[u]&k)==0){e=r(e)||e;5w[u]|=k}}}}}));1s.3i("94");1s.1n("93",7(e){y(!e.6o){6 f=14("5l,92",e)[0];y(f){1j(e,"73",7(){f.91()})}}});1s.1n("71,5l",7(e){y(e.2W=="70"){6 m=e.3z.19(/ 3n="([^"]*)"/i);e.J.3n=(m)?m[1]:""}y(e.2L=="5v"){1j(e,"73",7(){e.J.5u=1o;32("16.1Y."+e.2a+".J.5u=1z",1)})}});6 U=/^(5v|72|71)$/;1s.1n("90",7(e){1j(e,"8Z",7(){O(6 i=0;i<e.K;i++){y(6Z(e[i])){e[i].3m=1o;32("16.1Y."+e[i].2a+".3m=1z",1)}1d y(e[i].2W=="70"&&e[i].2L=="5v"){32("16.1Y."+e[i].2a+".3n=\'"+e[i].3n+"\'",1);e[i].3n=e[i].J.3n}}})});7 6Z(e){z U.Z(e.2L)&&!e.3m&&!e.J.5u};1s.1n("5d",7(e){y(e.8Y&&!e.6Y)e.6Y=""});6 P=(29<5.5)?"8X:":"";7 6X(e){6 f=16.3X("<"+P+e.3z.1q(1));y(e.3z.1q(-2)!="/>"){6 6V="</"+e.2W+">",n;1D((n=e.6W)&&n.3z!=6V){f.6t(n)}y(n)n.8W()}e.4R.6A(f,e)}});1F.24("17-8V",7(){1K=8;2r+="*{3H:22-2X}";8.3j=(29<5.5)?7(e){z e.1I}:7(e){z e.D.3j};8.3H=7(e){y(!1K.3j(e)){e.1r.2b="6T";y(e.D.6U=="1P")e.J.6U="2y";4k(e)}};7 4k(e){y(e!=1J&&e.D.1y!="3C"){4p(e);8U(e)}};6 3l=14.1i("3l");6 5t=14.1i("5t");7 4p(e){y(!e.J.3k){6 p=e.59;y(p&&1K.3j(p)&&e==3l(p))z;6 f=3l(e);y(f&&f.D.8T=="1M"&&1K.3j(f)){4p(f);m=5s(e,e.D.3k);c=5s(f,f.D.3k);y(m<0||c<0){e.J.3k=m+c}1d{e.J.3k=4g.3g(c,m)}f.J.3k="8S"}}};1k(23(4p).13(/5c/g,"6N").13(/4N/g,"8R"));7 5s(e,v){z(v=="1P")?0:3c(e,v)};6 U=/^[.\\d][\\w%]*$/,A=/^(1P|6T)$/,N="[.\\\\d]";6 4l,6S;7 6O(e){4l(e);6S(e)};7 2g(H){4l=7(e){y(!3d.Z(e.D.12))2g(e);4k(e)};7 2g(e,v){y(!e.J.3J){y(!v)v=e.D.12;e.J.3J=(U.Z(v))?4g.3g(0,2B(e,v)):v;2T(e,"12",e.J.3J)}};7 5r(e){y(!3D(e)){6 l=e.3B;1D(l&&!1K.3j(l))l=l.3B}z(l||1J).1I};7 1H(e,v){y(3d.Z(v))z 25(4c(v)/3w*5r(e));z 3c(e,v)};6 2B=7(e,v){6 b=e.D["2X-5o"]=="3G-2X";6 a=0;y(2m&&!b)a+=4n(e)+3K(e);1d y(!2m&&b)a-=4n(e)+3K(e);z 1H(e,v)+a};7 4n(e){z e.2S-e.1I};7 3K(e){z 1H(e,e.D.8Q)+1H(e,e.D.8P)};1k(23(3K).13(/6R/g,"6Q").13(/8O/g,"8N"));2r+="*{1A:1M;27:1M;3I-12:1M;3g-12:1M}";7 1A(e){y(e.D["3I-12"]!=1U){e.1r.1A=e.D["3I-12"]}y(20(1A,e,e.D.1A!="1M")){1K.3H(e);2g(e);4m(e)}};1k(23(1A).13(/3I/g,"3g"));1K.1A=1A;1K.27=27;7 4m(e){6 r=e.54();6 w=r.1W-r.1f;y(e.D.1A!="1M"&&w<=2B(e,e.D.1A)){e.J.12=2B(e,e.D.1A)}1d y(e.D.27!="1M"&&w>=2B(e,e.D.27)){e.J.12=2B(e,e.D.27)}1d{e.J.12=e.J.3J}};7 2x(e){y(20(2x,e,/^(2z|3C)$/.Z(e.D.1y)&&4o(e,"1f")!="1P"&&4o(e,"1W")!="1P"&&A.Z(4o(e,"12")))){5p(e);1K.3H(e)}};1K.2x=2x;7 5p(e){6 l=1H(e,e.J.52||e.D.1f);6 w=5r(e)-1H(e,e.D.1W)-l-8M(e);y(25(e.J.12)==w)z;e.J.12="";y(3D(e)||H||e.2S<w){y(!2m)w-=4n(e)+3K(e);y(w<0)w=0;e.J.3J=w;2T(e,"12",w)}};6 5q=0;4U(7(){6 i,w=(5q<1J.1I);5q=1J.1I;O(i 28 1A.1O){6 e=1A.1O[i];6 f=(25(e.J.12)==2B(e,e.D.1A));y(w&&f)e.J.12="";y(w==f)4m(e)}O(i 28 27.1O){6 e=27.1O[i];6 f=(25(e.J.12)==2B(e,e.D.27));y(!w&&f)e.J.12="";y(w!=f)4m(e)}O(i 28 2x.1O)5p(2x.1O[i])});y(26.8L!==1z){V.1n("12",N,2m?4l:4k)}V.1n("3I-12",N,1A);V.1n("3g-12",N,27);V.1n("1W",N,2x)};V.1n("3G-6P",N,7(e){y(e.D.8K!="8J"){e.8I=3c(e,e.D["3G-6P"])}});V.1n("2X-5o","22-2X",8.3H);V.1n("2X-5o","3G-2X",6O);6 1v=11 2U;1v.15(/6v/,"6u");1v.15(/12/,"2b");1v.15(/6w/,"5c");1v.15(/1f/,"2y");1v.15(/8H/,"6N");1v.15(/1W/,"56");1k(1v.2V(23(2g)));2g();8G(1o)});1F.24("17-8F",7(){y(29<5.5)z;6 A="6J.5n.8E";6 F="6K:"+A+"(1l=\'%1\',8D=\'6H\')";6 5j=11 1N((26.8C||"-8B.8A")+"$","i");6 3h=[];7 5f(e){6 f=e.6M[A];y(f){f.1l=e.1l;f.6L=1o}1d{e.J.5m=F.13(/%1/,e.1l);3h.1b(e)}e.1l=4i};7 6y(e){e.1l=e.4D;e.6M[A].6L=1z};V.3i(/6I\\s*:\\s*([\\d.]+)/,7(m,o){z"6G:1;5m:6K:6J.5n.8z(6I="+((4c(m[o+1])*3w)||1)+")"});6 B=/5e(-5i)?\\s*:\\s*([^\\(};]*)43\\(([^\\)]+)\\)([^;}]*)/;V.3i(B,7(m,o){6 u=42(m[o+3]);z 5j.Z(u)?"5m:"+F.13(/6H/,"8y").13(/%1/,u)+";6G:1;5e"+(m[o+1]||"")+":"+(m[o+2]||"")+"1M"+(m[o+4]||""):m[o]});y(1s){1s.1n("5d,5l",7(e){y(e.2W=="8x"&&e.2L!="5i")z;5k(e);1j(e,"8w",7(){y(!4j&&60.8v=="1l"&&e.1l.6F(4i)==-1)5k(e)})});6 6D=/^3W:.*;6E/i;6 6C=1Z("17-6E.8u",2k);7 5k(e){y(5j.Z(e.1l)){6 i=11 8t(e.12,e.2b);i.8s=7(){e.12=i.12;e.2b=i.2b;i=1U};i.1l=e.1l;e.4D=e.1l;5f(e)}1d y(6D.Z(e.1l)){e.1l=6C+"?"+e.1l.1q(5)}};6 I=/^5i/i;6 6B=1Z("17-2M.4C",2k);1s.1n("2M",7(e){y(I.Z(e.2L)){6 o=16.3X("<2M 2L=68/x-67>");o.1r.12=e.D.12;o.1r.2b=e.D.2b;o.3W=6B;6 u=1Z(e.3W,3F(5h.2u));e.4R.6A(o,e);14.5g("2M");4H(o,"",u);z o}})}6 4j=1z;1j(26,"6z",7(){4j=1o;O(6 i=0;i<3h.K;i++)6y(3h[i])});1j(26,"8r",7(){O(6 i=0;i<3h.K;i++)5f(3h[i]);4j=1z})});1F.24("17-2z",7(){V.1n("1y","2z",4a,"3C");V.1n("5e(-8q)?","[^};]*2z",4b);6 4Z=(2m)?"1X":"2F";6 4h=7(){y(1X.D.5b!="2z"){y(1X.D.5a=="1M"){1X.J.8p="8o-8n";1X.J.5a="43("+4i+")"}1X.J.5b="2z"}4h=2s};6 2h=6x("5d");7 1v(f){z 2A.2V(23(f))};6 2A=11 2U;2A.15(/6w/,"5c");2A.15(/1f/,"2y");2A.15(/6v/,"6u");2A.15(/12/,"2b");2A.15(/1W/,"56");2A.15(/X/,"Y");7 3f(e){z(e)?3D(e)||3f(e.59):1z};7 4f(e,p,3e){32("16.1Y."+e.2a+".J.4f(\'"+p+"\',\'"+3e+"\')",0)};7 4b(e){y(20(4b,e,e.D.5b=="2z"&&!e.61(1X))){4h();58(e);8m(e);4V(e)}};7 4V(e){2h.1l=e.D.5a.1q(5,-2);6 p=(e.6c)?e:e.59;p.6t(2h);57(e);8l(e);p.8k(2h)};7 58(e){e.1r.3E=e.D.3E;y(!3f(e)){6 3e="(25(J.3A)+16."+4Z+".6s)||0";4f(e,"3E",3e)}};1k(1v(58));7 57(e){6 p=3f(e)?"3E":"3A";e.J[p]=55(e,e.1r.3E)-e.54().1f-e.8j+2};1k(1v(57));7 55(e,p){34(p){1m"1f":1m"2y":z 0;1m"1W":1m"56":z 1J.1I-2h.2S;1m"8i":z(1J.1I-2h.2S)/2;8h:y(3d.Z(p)){z 25((1J.1I-2h.2S)*4c(p)/3w)}2h.1r.1f=p;z 2h.3A}};1k(1v(55));7 4a(e){y(20(4a,e,3D(e))){2T(e,"1y","3C");2T(e,"1f",e.D.1f);2T(e,"2y",e.D.2y);4h();y(1K)1K.2x(e);49(e)}};7 49(e,r){8g(e,r);4Y(e,r,1o);y(!e.J.4d&&e.D.4X=="1P"&&e.D.1W!="1P"){6 l=1J.1I-1H(e,e.D.1W)-1H(e,e.J.52)-e.1I;y(e.D.8f=="1P")l=25(l/2);y(3f(e.3B))e.J.4e+=l;1d e.J.50=l}53(e);8e(e)};7 53(e){y(e.D.12!="1P"){6 r=e.54();6 w=e.2S-1J.1I+r.1f-2;y(w>=0){w=4g.3g(3c(e,e.D.12)-w,0);2T(e,"12",w)}}};1k(1v(53));7 4Y(e,r){y(!r&&3d.Z(e.D.12)){e.J.2g=e.D.12}y(e.J.2g){e.J.12=1H(e,e.J.2g)}y(r){y(!e.J.4d)z}1d{e.J.50=0;e.J.52=e.D.1f;e.J.4d=e.D.1W!="1P"&&e.D.1f=="1P"}e.J.1f="";e.J.51=4W(e);e.J.4e=e.J.51;y(!r&&!3f(e.3B)){6 3e="J.51+J.50+16."+4Z+".6s";4f(e,"4e",3e)}};1k(1v(4Y));7 4W(e){6 s=e.3A,n=1;y(e.J.4d){s=1J.1I-e.2S-1H(e,e.D.1W)}y(e.D.4X!="1P"){s-=1H(e,e.D.4X)}1D(e=e.3B){y(e.D.1y!="8d")n=-1;s+=e.3A*n}z s};1k(1v(4W));7 1H(e,v){y(3d.Z(v))z 25(4c(v)/3w*1J.1I);z 3c(e,v)};1k(1v(1H));7 6r(){6 e=4b.1O;O(6 i 28 e)4V(e[i]);e=4a.1O;O(i 28 e){49(e[i],1o);49(e[i],1o)}48=0};6 48;4U(7(){y(!48)48=32(6r,0)})});1F.24("17-8c-1V",7(){14.24("8b-8a",7(){1V[">"]=7(r,f,t,n){6 e,i,j;O(i=0;i<f.K;i++){6 s=6q(f[i]);O(j=0;(e=s[j]);j++)y(4T(e,t,n))r.1b(e)}};1V["+"]=7(r,f,t,n){O(6 i=0;i<f.K;i++){6 e=47(f[i]);y(e&&4T(e,t,n))r.1b(e)}};1V["@"]=7(r,f,a){6 t=2R[a].Z;6 e,i;O(i=0;(e=f[i]);i++)y(t(e))r.1b(e)};1B["4N-89"]=7(e){z!4S(e)};1B["4Q"]=7(e,c){c=11 1N("^"+c,"i");1D(e&&!e.2H("4Q"))e=e.4R;z e&&c.Z(e.2H("4Q"))};1p.6p=/\\\\:/g;1p.3x="@";1p.3a={};1p.13=7(m,a,n,c,v){6 k=8.3x+m;y(!2R[k]){a=8.3Z(a,c||"",v||"");2R[k]=a;2R.1b(a)}z 2R[k].1c};1p.38=7(s){s=s.13(8.6p,"|");6 m;1D(m=s.19(8.19)){6 r=8.13(m[0],m[1],m[2],m[3],m[4]);s=s.13(8.19,r)}z s};1p.3Z=7(p,t,v){6 a={};a.1c=8.3x+2R.K;a.66=p;t=8.3a[t];t=t?t(8.2H(p),2w(v)):1z;a.Z=11 3b("e","z "+t);z a};1p.2H=7(n){34(n.5Z()){1m"1c":z"e.1c";1m"3U":z"e.1x";1m"O":z"e.6o";1m"2u":y(4P){z"23((e.3z.19(/2u=\\\\46?([^\\\\s\\\\46]*)\\\\46?/)||[])[1]||\'\')"}}z"e.2H(\'"+n.13(N,":")+"\')"};1p.3a[""]=7(a){z a};1p.3a["="]=7(a,v){z a+"=="+2c.15(v)};1p.3a["~="]=7(a,v){z"/(^| )"+4O(v)+"( |$)/.Z("+a+")"};1p.3a["|="]=7(a,v){z"/^"+4O(v)+"(-|$)/.Z("+a+")"};6 6n=45;45=7(s){z 6n(1p.38(s))}});6 1p=14.1i("1p");6 H=/a(#[\\w-]+)?(\\.[\\w-]+)?:(65|62)/i;6 6l=/\\s*\\{\\s*/,6m=/\\s*\\}\\s*/,C=/\\s*\\,\\s*/;6 F=/(.*)(:4N-(88|87))/;3y.1C.1e({38:7(){8.1T();6 o=V.2t.K;6 2Q=8.18.2O(6m),r;6 2f,c,i,j;O(i=0;i<2Q.K;i++){r=2Q[i].2O(6l);2f=r[0].2O(C);c=r[1];O(j=0;j<2f.K;j++){2f[j]=c?8.6k(2f[j],c):""}2Q[i]=2f.2p("\\n")}8.18=2Q.2p("\\n");8.2t=V.2t.1q(o)},1u:7(){6 r,i;O(i=0;(r=8.2t[i]);i++)r.1u()},6k:7(s,c){y(V.6j.Z(s)){6 m;y(m=s.19(1L.39)){z 11 1L(m[1],m[2],c)}1d y(m=s.19(2d.39)){y(!2l||!H.Z(m)||2d.44.Z(m)){z 11 2d(s,m[1],m[2],m[3],c)}}1d z 11 1G(s,c)}z s+" {"+c+"}"}});V.1e({2t:[],1B:14.1i("1B"),36:{},2e:14.1i("2e"),1G:1G,2d:2d,1L:1L,2J:2J,2q:7(){6 p=8.1B+"|6i|6h|"+8.36;p=p.13(/(21|37)\\|/g,"");8.6j=11 1N("[>+~\\[]|([:.])[\\\\w-()]+\\\\1|:("+p+")");6 c="[^\\\\s(]+\\\\s*[+~]|@\\\\d+|:(";1G.44=11 1N(c+p+")","g");2d.44=11 1N(c+8.1B+")","g");2d.39=11 1N("(.*):("+8.36+")(.*)");1L.39=/(.*):(6i|6h).*/;8.1T()},1u:7(){8.2P.1u();8.1T()},2w:7(s,p){z 2v?(3T(s.2u,p)||s.18):8.1T(s)},1j:7(e,t,h){1j(e,t,h)}});7 1G(s,c){8.1c=V.2t.K;8.1x=1G.3x+8.1c;s=(s).19(F)||s||"*";8.40=s[1]||s;8.4M=1G.6g(8.40)+"."+8.1x+(s[2]||"");8.18=c;8.39=11 1N("\\\\s"+8.1x+"(\\\\s|$)","g");V.2t.1b(8);8.1S()};1t.1e({1h:1G,1g:7(){z 8.4M+" {"+8.18+"}"},1S:2s,15:7(e){e.1x+=" "+8.1x},3v:7(e){e.1x=e.1x.13(8.39,"$1")},1u:7(){6 m=V.2e[" *."+8.1x]=14(8.40);O(i=0;i<m.K;i++)8.15(m[i])}});1G.3x="5Y";1G.6f=/>/g;1G.6g=7(s){s=1p.38(s);z s.13(8.44,"").13(8.6f," ")};7 2d(s,a,d,t,c){8.6e=a||"*";8.6d=V.36[d];8.4L=t;8.1T(s,c)};1G.1e({1h:2d,1u:7(){6 m=14(8.6e);O(6 i=0;i<m.K;i++){6 t=(8.4L)?14(8.4L,m[i]):[m[i]];y(t.K)8.6d.2q(m[i],t,8)}}});6 A=/^4I/;6 U=/^43\\s*\\(\\s*([^)]*)\\)$/;6 M={86:"85",84:"83",82:"81",80:"7Z"};6 6b=1Z("17-22.4C",2k)+"?";2r+=".2K{4K:1M}";7 1L(s,p,c){8.1y=p;6 2N=c.19(1L.6a),m,e;y(2N){2N=2N[1];m=2N.2O(/\\s+/);O(6 i=0;(e=m[i]);i++){m[i]=A.Z(e)?{4I:e.1q(5,-1)}:(e.7Y(0)=="\'")?42(e):41(e)}2N=m}8.22=2N;8.1T(s,41(c))};1G.1e({1h:1L,1g:7(){z"."+8.1x+"{4K:7X}"},1S:7(){8.19=14(8.40);O(6 i=0;i<8.19.K;i++){6 r=8.19[i].J;y(!r[8.1y])r[8.1y]={18:""};r[8.1y].18+=";"+8.18;y(8.22!=1U)r[8.1y].22=8.22}},1u:7(){y(8.22==1U)z;O(6 i=0;i<8.19.K;i++){8.3Z(8.19[i])}},3Z:7(t){6 g=t.J[8.1y];y(g){6 c=[].4J(g.22||"");O(6 j=0;j<c.K;j++){y(3Y c[j]=="2M"){c[j]=t.2H(c[j].4I)}}c=c.2p("");6 u=c.19(U);6 h=1L[u?"69":"4E"].13(/%1/,8.1x);6 4G=g.18.13(/\'/g,\'"\');6 4F=M[8.1y+7W(t.6c)];y(u){6 p=16.3X(h);t.7V(4F,p);p.3W=6b;4H(p,4G,2c.3v(u[1]))}1d{h=h.13(/%2/,4G).13(/%3/,c);t.7U(4F,h)}t.J[8.1y]=1U}}});1L.6a=/22\\s*:\\s*([^;]*)(;|$)/;1L.69="<2M 3U=\'2K %1\' 2K 12=3w% 2b=0 2L=68/x-67>";1L.4E="<17:! 3U=\'2K %1\' 2K 1r=\'%2\'>%3</17:!>";7 2J(n,a){8.66=n;8.2q=a;8.2I={};V.36[n]=8};1t.1e({1h:2J,20:7(i){6 c=i[2];i.1c=c.1c+i[0].2a;y(!8.2I[i.1c]){6 t=i[1],j;O(j=0;j<t.K;j++)c.15(t[j]);8.2I[i.1c]=i}},35:7(i){y(8.2I[i.1c]){6 c=i[2];6 t=i[1],j;O(j=0;j<t.K;j++)c.3v(t[j]);3u 8.2I[i.1c]}}});V.1B.1g=7(){6 t=[],p;O(p 28 8){y(8[p].K>1)p+="\\\\([^)]*\\\\)";t.1b(p)}z t.2p("|")};V.1B["21"]=7(e){z e.D["17-21"]=="21"};V.1B["37"]=7(e){z e.D["17-21"]=="37"};6 64=(29<5.5)?"7T":"7S";6 63=(29<5.5)?"7R":"7Q";V.36.1g=V.1B.1g;6 3s=11 2J("65",7(e){6 i=1a;V.1j(e,64,7(){3s.20(i)});V.1j(e,63,7(){3s.35(i)})});6 3t=11 2J("7P",7(e){6 i=1a;V.1j(e,"7O",7(){3t.35(i);3t.20(i)});V.1j(e,"7N",7(){3t.35(i)});y(e==16.7M){3t.20(i)}});6 3V=11 2J("62",7(e){6 i=1a;V.1j(e,"7L",7(){3V.20(i)})});1j(16,"7K",7(){6 i=3V.2I,j;O(j 28 i)3V.35(i[j]);i=3s.2I;O(j 28 i)y(!i[j][0].61(60.7J))3s.35(i[j])});2o(1p);1p.1e({2H:7(n){34(n.5Z()){1m"3U":z"e.1x.13(/\\\\b\\\\s*5Y\\\\d+/g,\'\')";1m"1l":z"(e.4D||e.1l)"}z 8.1T(n)}});2n.15(/::/,":");3r.15(/\\\\([\\7I-7H-F]{1,4})/,7(m,o){m=m[o+1];z"\\\\u"+"7G".1q(m.K)+m})});2G=1o;y(2m)1k(3T("17-7F.5X",2k));V.1S();y(2l&&1s)1s.1S();y(33)1F.1S();1d{2F.7E(1Z("17-3q.4C",2k));1j(16,"7D",7(){y(16.5W=="33")32(1F.1S,0)})}}2j(e){31("4B [0]: "+e.5V)}5U{}};',62,634,'||||||var|function|this||||||||||||||||||||||||||if|return||||currentStyle||||||runtimeStyle|length||||for|||||||ie7CSS||||test||new|width|replace|cssQuery|add|document|ie7|cssText|match|arguments|push|id|else|specialize|left|toString|constructor|valueOf|addEventHandler|eval|src|case|addRecalc|true|AttributeSelector|slice|style|ie7HTML|Common|recalc|_0|that|className|position|false|minWidth|pseudoClasses|prototype|while|fr|IE7|Rule|getPixelWidth|clientWidth|viewport|ie7Layout|PseudoElement|none|RegExp|elements|auto|recalcs|styleSheets|init|inherit|null|selectors|right|body|all|makePath|register|link|content|String|addModule|parseInt|window|maxWidth|in|appVersion|uniqueID|height|Quote|DynamicRule|cache|se|fixWidth|_1|klass|catch|path|isHTML|quirksMode|encoder|ICommon|join|apply|HEADER|DUMMY|rules|href|httpRequest|getText|fixRight|top|fixed|_2|getFixedWidth|try|thisElement|ancestor|documentElement|loaded|getAttribute|instances|DynamicPseudoClass|ie7_anon|type|object|co|split|screen|ru|attributeSelectors|offsetWidth|setOverrideStyle|ParseMaster|exec|tagName|box|print|media|_3|alert|setTimeout|complete|switch|unregister|dynamicPseudoClasses|visited|parse|MATCH|tests|Function|getPixelValue|PERCENT|ex|_4|max|_5|addFix|hasLayout|marginTop|firstElementChild|disabled|value|size|font|load|safeString|_6|_7|delete|remove|100|PREFIX|StyleSheet|outerHTML|offsetLeft|offsetParent|absolute|isFixed|backgroundPositionX|getPath|border|boxSizing|min|fixedWidth|getPaddingWidth|fixes|Parser|self|styleSheet|st|modules|_8|x01|loadFile|class|_9|data|createElement|typeof|create|selector|decode|getString|url|COMPLEX|parseSelector|x22|nextElementSibling|_10|_11|_12|_13|parseFloat|autoLeft|pixelLeft|setExpression|Math|_14|BLANK_GIF|_15|_16|applyWidth|resizeWidth|getBorderWidth|getDefinedStyle|collapseMarginTop|_17|_18|_19|refresh|el|ca|getElementsByTagName|version|escapeChar|ancestorOf|_20|Error|htc|pngSrc|ANON|po|cs|addTimer|attr|concat|display|target|selectorText|first|regEscape|isMSIE|lang|parentNode|previousElementSibling|compareTagName|addResize|_21|getScreenLeft|marginLeft|positionLeft|_22|shiftLeft|screenLeft|_23|clipWidth|getBoundingClientRect|getOffsetLeft|bottom|setOffsetLeft|backgroundLeft|parentElement|backgroundImage|backgroundAttachment|Top|img|background|_24|clearCache|location|image|_25|_26|input|filter|Microsoft|sizing|resizeRight|_27|layoutWidth|_28|lastElementChild|clicked|submit|_29|Fix|_30|decoder|_31|parser|_32|gi|_33|styles|createStyleSheet|isXML|caching|_34|compareNamespace|getDocument|continue|links|error|callee|ignoreCase|_35|_36|ie7_debug|finally|description|readyState|js|ie7_class|toLowerCase|event|contains|active|_37|_38|hover|name|scriptlet|text|OBJECT|CONTENT|_39|canHaveChildren|dynamicPseudoClass|attach|CHILD|simple|after|before|UNKNOWN|createRule|B1|B2|_40|htmlFor|NS_IE|childElements|_41|scrollLeft|appendChild|Height|Width|Left|createTempElement|_42|onbeforeprint|replaceChild|_43|_44|B64|base64|indexOf|zoom|scale|opacity|DXImageTransform|progid|enabled|filters|Bottom|borderBox|spacing|margin|padding|applyHeight|0cm|verticalAlign|en|nextSibling|_45|title|_46|BUTTON|button|reset|onclick|clearInterval|PIXEL|removeEventHandler|pop|_47|_48|lastIndexOf|_49|_50|_51|_52|imports|trash|ie7_recalc|getInlineStyles|innerHTML|nodeType|ST|select|Array|_53|mimeType|Boolean|lastChild|firstChild|ES|_54|_55|_56|_57|_58|DE|status|scripts|search|onreadystatechange|addBehavior|quirks|0000|fA|da|srcElement|onmouseup|onmousedown|activeElement|onblur|onfocus|focus|onmouseleave|onmouseout|onmouseenter|onmouseover|insertAdjacentHTML|insertAdjacentElement|Number|inline|charAt|beforeEnd|after1|afterEnd|after0|afterBegin|before1|beforeBegin|before0|letter|line|child|level2|css|css2|static|clipHeight|marginRight|positionTop|default|center|clientLeft|removeChild|setOffsetTop|backgroundTop|repeat|no|backgroundRepeat|attachment|onafterprint|onload|Image|php|propertyName|onpropertychange|INPUT|crop|Alpha|png|trans|IE7_PNG_SUFFIX|sizingMethod|AlphaImageLoader|graphics|fixHeight|Right|cellSpacing|collapse|borderCollapse|IE7_BOX_MODEL|getMarginWidth|Margin|Padding|paddingRight|paddingLeft|last|0px|styleFloat|collapseMarginBottom|layout|removeNode|HTML|alt|onsubmit|form|click|textarea|label|abbr|pow|67em|h6|83em|h5|1em|h4|17em|h3|5em|h2|2em|h1|html4|setInterval|9999|rect|clip|block|px|onunload|detachEvent|attachEvent|onresize|x27|import|namespace|ma|bprint|bscreen|ball|write|item|innerText|getTextContent|scopeName|toUpperCase|ownerDocument|Document|XML|URL|xml|unknown|previousSibling|number|successfully|ie5|instanceOf|Object|common|caller|gif|blank|file|loading|responseText|200|send|GET|open|XMLHTTP|ActiveXObject|Msxml2|ScriptEngineMajorVersion|ms_|ie7_off|CSS1Compat|compatMode|MSIE|navigator|alpha'.split('|'),0,{}))
delft/wiki-skins/nixos/ie7/ie7-xml-extras.js
deleted
-6
@@ -1,6 +0,0 @@
1
-/*
2
- IE7, version 0.9 (alpha) (2005-08-19)
3
- Copyright: 2004-2005, Dean Edwards (http://dean.edwards.name/)
4
- License: http://creativecommons.org/licenses/LGPL/2.1/
5
-*/
6
-function XMLHttpRequest(){var l=(ScriptEngineMajorVersion()>=5)?"Msxml2":"Microsoft";return new ActiveXObject(l+".XMLHTTP")};function DOMParser(){};DOMParser.prototype={toString:function(){return"[object DOMParser]"},parseFromString:function(s,c){var x=new ActiveXObject("Microsoft.XMLDOM");x.loadXML(s);return x},parseFromStream:new Function,baseURI:""};function XMLSerializer(){};XMLSerializer.prototype={toString:function(){return"[object XMLSerializer]"},serializeToString:function(r){return r.xml||r.outerHTML},serializeToStream:new Function};
delft/wiki-skins/nixos/ie7/ie7.gif
Binary files a/delft/wiki-skins/nixos/ie7/ie7.gif and /dev/null differ
delft/wiki-skins/nixos/ie7/test-trans.png
Binary files a/delft/wiki-skins/nixos/ie7/test-trans.png and /dev/null differ
delft/wiki-skins/nixos/ie7/test.html
deleted
-100
@@ -1,100 +0,0 @@
1
-<html xmlns:html="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
2
-<head>
3
-<title>IE7 Test Page</title>
4
-<meta name="author" content="Dean Edwards"/>
5
-<!-- compliance patch for microsoft browsers -->
6
-<!--[if lt IE 7]>
7
-<script src="ie7-standard-p.js" type="text/javascript"></script>
8
-<script src="ie7-css3-selectors.js" type="text/javascript"></script>
9
-<script src="ie7-css-strict.js" type="text/javascript"></script>
10
-<![endif]-->
11
-<style type="text/css">
12
- body {background-color: #ccc;}
13
- img {border: none;}
14
- h1 {font-family: monospace;}
15
- h2 {background-color: black; color: white; font-style: normal;}
16
- h3 {margin: 0.1em 0;}
17
-</style>
18
-</head>
19
-
20
-<body>
21
-<div class="document">
22
-<div class="header">
23
-<h1>IE7 { css2: auto; }</h1>
24
-<hr />
25
-</div>
26
-
27
-<div class="content">
28
-
29
-<h2>Black & White Test</h2>
30
-
31
-<h3>Legend</h3>
32
-<style type="text/css">
33
- div.legend {height: 20px; font-weight: bold; text-indent: 4px;}
34
- #fail {background-color: black; color: white;}
35
- #pass {background-color: white; color: black;}
36
-</style>
37
-<div class="legend" id="pass">PASS</div>
38
-<div class="legend" id="fail">FAIL</div>
39
-
40
-<hr />
41
-
42
-<h3>ie7-html4.js</h3>
43
-<style type="text/css">
44
- #ie7-html4 {background-color: black; height: 20px;}
45
- #ie7-html4 abbr {display: block; background-color: white; height: 20px;}
46
-</style>
47
-<div id="ie7-html4"><abbr> </abbr></div>
48
-
49
-<h3>ie7-layout.js</h3>
50
-<style type="text/css">
51
- #ie7-layout {background-color: black; height: 20px; overflow: hidden;}
52
- #ie7-layout div.box {position: relative; top: -40px; background-color: white;
53
- height: 40px; border-top: 20px black solid;}
54
-</style>
55
-<div id="ie7-layout"><div class="box"></div></div>
56
-
57
-<h3>ie7-graphics.js</h3>
58
-<style type="text/css">
59
- #ie7-graphics {background-color: white; height: 20px;}
60
- #ie7-graphics div.box {height: 20px; background: url(test-trans.png);}
61
-</style>
62
-<div id="ie7-graphics"><div class="box"></div></div>
63
-
64
-<h3>ie7-fixed.js</h3>
65
-<style type="text/css">
66
- #ie7-fixed {background-color: white; height: 20px;}
67
- #ie7-fixed div.box {position: fixed; top: -20px; background-color: black; height: 20px;}
68
-</style>
69
-<div id="ie7-fixed"><div class="box"></div></div>
70
-
71
-<h3>ie7-css2-selectors.js</h3>
72
-<style type="text/css">
73
- #ie7-css2-selectors {background-color: black; height: 20px;}
74
- #ie7-css2-selectors > span {display: block; background-color: white; height: 20px;}
75
-</style>
76
-<div id="ie7-css2-selectors"><span> </span></div>
77
-
78
-<h3>ie7-css3-selectors.js</h3>
79
-<style type="text/css">
80
- #ie7-css3-selectors {background-color: black; height: 20px;}
81
- #ie7-css3-selectors:empty {background-color: white;}
82
-</style>
83
-<div id="ie7-css3-selectors"></div>
84
-
85
-<h3>ie7-css-strict.js</h3>
86
-<style type="text/css">
87
- #ie7-css-strict {background-color: black; height: 20px;}
88
- #ie7-css-strict > span.strict {display: block; background-color: white; height: 20px;}
89
- #ie7-css-strict > span {display: block; background-color: black}
90
-</style>
91
-<div id="ie7-css-strict"><span class="strict"></span></div>
92
-</div>
93
-
94
-<div class="footer">
95
-<hr />
96
-<a href="http://dean.edwards.name/IE7/"><img src="ie7.gif" width="80" height="15" alt="IE7 Enhanced"/></a>
97
-</div>
98
-</div>
99
-</body>
100
-</html>
delft/wiki-skins/nixos/link_icon.gif
Binary files a/delft/wiki-skins/nixos/link_icon.gif and /dev/null differ
delft/wiki-skins/nixos/lock_icon.gif
Binary files a/delft/wiki-skins/nixos/lock_icon.gif and /dev/null differ
delft/wiki-skins/nixos/mail_icon.gif
Binary files a/delft/wiki-skins/nixos/mail_icon.gif and /dev/null differ
delft/wiki-skins/nixos/main.css
deleted
-1023
@@ -1,1023 +0,0 @@
1
-
2
-/* Initial styles 2.1 by Faruk Ates - www.kurafire.net */
3
-
4
-/* Neutralize styling: */
5
-
6
-html, form, fieldset {
7
- margin: 0;
8
- padding: 0;
9
- font-family: sans-serif;
10
-}
11
-
12
-body {
13
- max-width: 80%;
14
- /*max-width: 55em;*/
15
- margin: 1em auto;
16
- background-color: white;
17
-
18
- /* Put a rounded border around the page. */
19
- border: 1px solid black;
20
- padding: 1em;
21
- border-radius: 1em;
22
- -moz-border-radius: 1em;
23
- -webkit-border-radius: 1em;
24
- -moz-box-shadow: #404040 0px 5px 50px;
25
- -webkit-box-shadow: #404040 0px 5px 50px;
26
-}
27
-
28
-code {
29
- font: monospace;
30
- border: 1px solid #6185a0;
31
- padding: 6px 6px;
32
- color: #600000;
33
- background: #f4f4f8;
34
-}
35
-
36
-h1, h2, h3, h4, h5, h6, #pageTitle, #siteTitle {
37
- font-family: sans-serif;
38
-}
39
-
40
-/* Neutralize styling: Elements with a vertical margin: */
41
-
42
-h1, h2, h3, h4, h5, h6, p, pre,
43
-blockquote, ul, ol, dl, address {
44
- margin: 1em 0;
45
- padding: 0;
46
-}
47
-
48
-/* Apply left margin: Only to the few elements that need it: */
49
-
50
-li, dd, blockquote {
51
- margin-left: 1em;
52
-}
53
-
54
-/* Miscellaneous conveniences: */
55
-
56
-form label, form input[type=submit], form input[type=checkbox] {
57
- cursor: pointer;
58
-}
59
-
60
-fieldset {
61
- border: none;
62
-}
63
-
64
-/* Main CSS styles */
65
-
66
-
67
-html{
68
- background-color: gray;
69
- height: 100%;
70
-}
71
-
72
-
73
-input[type=text], input[type=password] {
74
- background-color: #f5f7c4;
75
-}
76
-
77
-#searchField {
78
- background-color: white;
79
-}
80
-
81
-a {
82
- text-decoration: none;
83
-}
84
-
85
-#bodyTable {
86
- margin-left: auto;
87
- margin-right: auto;
88
- height: 100%;
89
- /* Remove the below line to make layout elastic */
90
- width: 100%;
91
-}
92
-
93
-#middleDiv {
94
-}
95
-
96
-#leftDiv {
97
- background: url(background.left.gif);
98
- background-repeat: repeat-y;
99
- background-position: top right;
100
- _height: 100%;
101
- width: 4%;
102
-}
103
-
104
-#rightDiv {
105
- background: url(background.right.gif);
106
- background-repeat: repeat-y;
107
- background-position: top left;
108
- _height: 100%;
109
- width: 4%;
110
-}
111
-
112
-#header {
113
- height: 50px;
114
-}
115
-
116
-/* The top and bottom menus. */
117
-ul.short-menu {
118
- font-family: sans-serif;
119
- display: block;
120
- float: right;
121
- right: 0em;
122
- margin: 0;
123
- padding: 0;
124
-}
125
-
126
-ul.short-menu li {
127
- font-family: sans-serif;
128
- display: inline;
129
-
130
- /* Put a ">" in front of the menu item. */
131
- margin-left: 0.5em;
132
- padding-left: 1.3em;
133
- padding-top: 0.5em;
134
- padding-bottom: 0.5em;
135
- background-image: url(arrow-right.gif);
136
- background-repeat: no-repeat;
137
- background-position: 0.3em center;
138
-}
139
-
140
-ul.short-menu li a {
141
- font-family: sans-serif;
142
- color: black;
143
- text-decoration: none;
144
-}
145
-
146
-ul.short-menu li a:hover {
147
- text-decoration: none;
148
- border-bottom: 1px dotted black;
149
- background: white;
150
-}
151
-
152
-ul#top-menu {
153
- top: 0em;
154
-}
155
-
156
-#footer {
157
- margin-top: 1em;
158
- position: relative;
159
-}
160
-
161
-ul#bottom-menu {
162
- bottom: 0em;
163
-}
164
-
165
-div#logo {
166
- border: 0px;
167
- float: left;
168
- display: inline;
169
-}
170
-
171
-
172
-
173
-
174
-
175
-
176
-
177
-
178
-
179
-#siteLogoDiv {
180
- float: left;
181
- width: 120px;
182
- height: 50px;
183
- overflow: hidden;
184
-}
185
-
186
-#siteLogoDiv img {
187
- width: 110px;
188
- margin-top: -17px;
189
- margin-left: 3px;
190
-}
191
-
192
-#topBackground {
193
- display: block;
194
- width: 100%;
195
- /*
196
- height: 50px;
197
- background: url(background.top.gif);
198
- background-repeat: repeat-x;
199
- padding-top: 10px;
200
- */
201
-}
202
-
203
-#siteTitle {
204
- text-shadow: #CCCCCC 2px 2px 3px;
205
- float: left;
206
- font-weight: bold;
207
- font-size: 180%;
208
- color: #333333;
209
- margin-top: 14px;
210
-}
211
-
212
-#siteTitle a {
213
- color: #745c13;
214
- text-decoration: none;
215
-}
216
-
217
-#pageTitle a {
218
- color: #005AA0;
219
- text-decoration: none;
220
-}
221
-
222
-#siteTitle a:hover, #pageTitle a:hover {
223
- color: red;
224
- text-decoration: none;
225
-}
226
-
227
-#loginText {
228
- float: right;
229
- font-size: 90%;
230
- color: #444444;
231
- margin: 0px 5px 5px 0;
232
-}
233
-
234
-#loginText a {
235
- color: #444444;
236
- text-decoration: none;
237
-}
238
-
239
-#loginText a:hover {
240
- color: red;
241
- text-decoration: none;
242
-}
243
-
244
-#menuTable {
245
- clear: both;
246
- background-color: #E0E0FF;
247
- /* border-bottom: 1px solid #999999; */
248
- padding-left: 3px;
249
- padding-right: 5px;
250
- font-weight: bold;
251
-}
252
-
253
-.menuItem {
254
- font: Tahoma, Arial, Helvetica, sans-serif;
255
- font-size: 100%;
256
-}
257
-
258
-.menuItem a {
259
- color: black;
260
- display: block;
261
- text-decoration: none;
262
- padding: 4px 10px 4px 10px;
263
-}
264
-
265
-.menuItem a:hover {
266
- color: white;
267
- background-color: #666666;
268
-}
269
-
270
-#searchField {
271
- width: 160px;
272
- font-size: 90%;
273
- margin-right: 5px;
274
- margin-left: 10px;
275
- border: 0px;
276
- border-top: 1px solid #999999;
277
- border-left: 1px solid #999999;
278
- border-right: 1px solid #CCCCCC;
279
- border-bottom: 1px solid #CCCCCC;
280
- padding: 0;
281
-}
282
-
283
-.editMenuItem, .editsection a {
284
- font-size: 12px;
285
- background-color: #FFBF00;
286
- padding: 1px 6px 1px 6px;
287
- border-right: 1px solid #666666;
288
- border-bottom: 1px solid #666666;
289
-}
290
-
291
-.editMenuItem {
292
- display: block;
293
- float: right;
294
- border-right: 1px dotted black;
295
- _border-right: 1px solid #be8e00;
296
- white-space: nowrap;
297
- margin-top: 6px;
298
- _margin-top: 8px;
299
-}
300
-
301
-#editMiniMenu {
302
- display: block;
303
- background-color: #FFBF00;
304
- position: absolute;
305
- top: 0px;
306
- left: 0px;
307
- z-index: 100;
308
- border-right: 1px solid #666666;
309
- border-bottom: 1px solid #666666;
310
- padding: 4px 0 4px 0;
311
- _padding: 2px 0 4px 0;
312
-}
313
-
314
-.editMiniItem a {
315
- display: block;
316
- background-color: #FFBF00;
317
- font-size: 12px;
318
- color: black;
319
- text-decoration: none;
320
- padding: 0 10px 1px 10px;
321
- _padding: 0 5px 1px 10px;
322
- white-space: nowrap;
323
-}
324
-
325
-.editMiniItem a:hover, .editMenuItemLast:hover, #dropLink:hover {
326
- color: #FFBF00;
327
- background-color: black;
328
- text-decoration: none;
329
-}
330
-
331
-.editMenuItem a, .editsection a {
332
- color: black;
333
- text-decoration: none;
334
-}
335
-
336
-.editMenuItem a:hover, .editsection a:hover {
337
- color: red;
338
- text-decoration: none;
339
-}
340
-
341
-.editMenuItemLast {
342
- border-right: 1px solid #666666;
343
-}
344
-
345
-.editsection a {
346
- _line-height: 100%;
347
- _padding-bottom: 2px;
348
-}
349
-
350
-.editsection {
351
- clear: both;
352
- color: white;
353
- margin: 0;
354
- padding: 0;
355
- display: block;
356
- float: right;
357
- padding-top: 10px;
358
- _padding-bottom: 6px;
359
-}
360
-
361
-#emptyDiv + .editsection {
362
- margin-top: 0;
363
- padding-top: 3px;
364
-}
365
-
366
-blockquote + .editsection {
367
- margin-top: 15px;
368
-}
369
-
370
-blockquote + .editsection + a + h2 {
371
- margin-top: 0;
372
- padding-top: 22px;
373
- _padding-top: 21px;
374
-}
375
-
376
-blockquote + .editsection + a + h3 {
377
- margin-top: 0;
378
- padding-top: 22px;
379
- _padding-top: 24px;
380
-}
381
-
382
-p + .editsection + a + h3 {
383
- margin-top: 0;
384
- padding-top: 9px;
385
- _padding-top: 10px;
386
-}
387
-
388
-/* Main Page Styles */
389
-
390
-#bodyContent {
391
- clear: both;
392
-}
393
-
394
-#bodyContent p {
395
- line-height: 110%;
396
- /* margin-right: 40px; */
397
-}
398
-
399
-#bodyContent li {
400
- /* margin-right: 40px; */
401
- margin-bottom: 3px;
402
-}
403
-
404
-#bodyContent a {
405
- color: #002BB8;
406
-}
407
-
408
-#bodyContent a:visited {
409
- color: #3366C0;
410
-}
411
-
412
-#bodyContent a:hover {
413
- text-decoration: underline;
414
-}
415
-
416
-#bodyContent .new {
417
- color: red;
418
-}
419
-
420
-#pageHeader {
421
- clear: both;
422
- display: block;
423
- border-bottom: 1px solid #A6A6A6;
424
- margin: 23px 0px 20px 0px;
425
- padding: 0;
426
-}
427
-
428
-#pageTitle {
429
- font-size: 180%;
430
- font-weight: bold;
431
- color: black;
432
- padding-top: 0px;
433
- margin-right: 110px;
434
- border-bottom: 0px;
435
- display: block;
436
-}
437
-
438
-h1, h2 {
439
- color: #005AA0;
440
- font-size: 130%;
441
- font-weight: bold;
442
- color: #005AA0;
443
- border-bottom: 1px dotted black;
444
- /* padding-right: 50px; */
445
- display: block;
446
-}
447
-
448
-h3, h4, h5, h6 {
449
- color: #005AA0;
450
- /* padding-right: 50px; */
451
- display: block;
452
-}
453
-
454
-h3 {
455
- font-size: 100%;
456
-}
457
-
458
-p, ul, dl, ol, blockquote {
459
- line-height: 130%;
460
-}
461
-
462
-blockquote ul, blockquote dl, blockquote ol {
463
- margin-left: 0px;
464
-}
465
-
466
-li {
467
- margin-left: 20px;
468
-}
469
-
470
-blockquote {
471
- margin: 15px 30px 0 0;
472
- padding-left: 20px;
473
- _padding-left: 15px;
474
- border-left: 5px solid #CCCCCC;
475
-}
476
-
477
-pre {
478
- border: 1px dotted #6185a0;
479
-}
480
-
481
-blockquote pre {
482
- font: monospace;
483
- border: 1px solid #6185a0;
484
- padding: 6px 6px;
485
- color: #600000;
486
- background: #f4f4f8;
487
-}
488
-
489
-#toc, .toc {
490
- border: 1px dotted #aaa;
491
- background-color: #F0F0FF;
492
- padding: 5px;
493
-}
494
-
495
-#toc h2, .toc h2 {
496
- display: inline;
497
- margin: 0;
498
- padding: 0;
499
- border: none;
500
- float: left;
501
-}
502
-
503
-#toc ul, .toc ul {
504
- clear: both;
505
- font-size: 9pt;
506
- list-style-type: none;
507
- list-style-image: none;
508
- margin: 0 0 3px 0;
509
- padding: 7px 0 0 0;
510
- _padding: 0;
511
- margin-top: 7px;
512
- _margin-top: 3px;
513
- text-align: left;
514
-}
515
-
516
-#toc ul ul, .toc ul ul {
517
- padding-top: 0px;
518
- margin: 0 0 0 1em;
519
-}
520
-
521
-#toc li {
522
- font-size: 9pt;
523
- line-height: 150%;
524
- margin: 0 10px 0 5px;
525
-}
526
-
527
-#toc li li {
528
- font-size: 100%;
529
-}
530
-
531
-#toc .toctoggle, .toc .toctoggle {
532
- display: inline;
533
- font-size: 95%;
534
- padding-top: 7px;
535
- float: right;
536
- margin-left: 10px;
537
-}
538
-
539
-.printfooter {
540
- display: none;
541
- visibility: hidden;
542
-}
543
-
544
-#lastmod {
545
- font-size: 85%;
546
- line-height: 100%;
547
- _line-height: 130%;
548
- display: block;
549
- width: 100%;
550
- clear: both;
551
- text-align: right;
552
- color: #999999;
553
- margin: 20px 20px 0 0;
554
-}
555
-
556
-/* Editing and Previewing */
557
-
558
-#toolbar {
559
- display: none;
560
-}
561
-
562
-#editform {
563
- margin-top: 20px;
564
-}
565
-
566
-#editform em {
567
- font-size: 110%;
568
-}
569
-
570
-textarea {
571
- font: 10pt Courier, monospace;
572
- width: 100%;
573
- height: 350px;
574
- border: 1px solid #999999;
575
-}
576
-
577
-#editform textarea {
578
- margin-bottom: 10px;
579
-}
580
-
581
-input {
582
- border: 1px solid #999999;
583
-}
584
-
585
-input[type=checkbox] {
586
- border: 0px;
587
-}
588
-
589
-input[type=submit] {
590
- border: 1px outset #666666;
591
- background-color: #CCCCCC;
592
-}
593
-
594
-#editpage-copywarn p {
595
- font-size: 90%;
596
- margin: 20px 0 0 0;
597
- line-height: 130%;
598
-}
599
-
600
-#editpage-copywarn p br {
601
- display: none;
602
-}
603
-
604
-input[name=wpMinoredit], label[for=wpMinoredit] {
605
- display: none;
606
-}
607
-
608
-input[name=wpWatchthis], label[for=wpWatchthis] {
609
- display: none;
610
-}
611
-
612
-#wpSave, #wpPreview {
613
- font-size: 120%;
614
- background-color: #DDDDDD;
615
-}
616
-
617
-#wpSave {
618
- margin-right: 5px;
619
-}
620
-
621
-#wpSave:hover, #wpPreview:hover {
622
- border-color: red;
623
-}
624
-
625
-#wpDiff {
626
- display: none;
627
-}
628
-
629
-#wpPreview {
630
- margin-right: 10px;
631
-}
632
-
633
-label[for=wpMinoredit] {
634
- padding-right: 10px;
635
-}
636
-
637
-#editform em a {
638
- font-style: normal;
639
-}
640
-
641
-.previewnote, .error {
642
- display: block;
643
- color: red;
644
- padding: 5px;
645
- background-color: #f8d1d1;
646
- text-align: center;
647
- font-weight: normal;
648
- list-style-type: none;
649
-}
650
-
651
-.error li {
652
- padding: 0;
653
- margin: 0;
654
-}
655
-
656
-/* From MonoBook */
657
-
658
-#bodyContent a[href ^="http://"], #bodyContent a[href ^="gopher://"] {
659
- background: url(external.png) center right no-repeat;
660
- padding-right: 13px;
661
-}
662
-
663
-#bodyContent a[href ^="https://"], .link-https {
664
- background: url(lock_icon.gif) center right no-repeat;
665
- padding-right: 16px;
666
-}
667
-
668
-#bodyContent a[href ^="mailto:"], .link-mailto {
669
- background: url(mail_icon.gif) center right no-repeat;
670
- padding-right: 18px;
671
-}
672
-
673
-#bodyContent a[href ^="news://"] {
674
- background: url(news_icon.png) center right no-repeat;
675
- padding-right: 18px;
676
-}
677
-
678
-#bodyContent a[href ^="ftp://"], .link-ftp {
679
- background: url(file_icon.gif) center right no-repeat;
680
- padding-right: 18px;
681
-}
682
-
683
-#bodyContent a[href ^="irc://"], .link-irc {
684
- background: url(discussionitem_icon.gif) center right no-repeat;
685
- padding-right: 18px;
686
-}
687
-
688
-#homeLink {
689
- display: block;
690
-}
691
-
692
-#dropLink {
693
- display: block;
694
- background: url(dropmenu_icon.gif) center right no-repeat;
695
- background-color: #FFBF00;
696
- padding-right: 14px;
697
-}
698
-
699
-/* Diff Rendering */
700
-
701
-table.diff, td.diff-otitle, td.diff-ntitle {
702
- background-color: white;
703
-}
704
-
705
-td.diff-addedline {
706
- background: #cfc;
707
- font-size: smaller;
708
-}
709
-
710
-td.diff-deletedline {
711
- background: #ffa;
712
- font-size: smaller;
713
-}
714
-
715
-td.diff-context {
716
- background: #eee;
717
- font-size: smaller;
718
-}
719
-
720
-span.diffchange {
721
- color: red;
722
- font-weight: bold;
723
-}
724
-
725
-/* Page history styling */
726
-/* the auto-generated edit comments */
727
-
728
-.autocomment {
729
- color: gray;
730
-}
731
-
732
-#pagehistory span.user {
733
- margin-left: 1.4em;
734
- margin-right: .4em;
735
-}
736
-
737
-#pagehistory span.minor {
738
- font-weight: bold;
739
-}
740
-
741
-#pagehistory li {
742
- border: 1px solid white;
743
-}
744
-
745
-#pagehistory li.selected {
746
- background-color: #DDDDDD;
747
- border: 1px solid white;
748
-}
749
-
750
-/* User Preferences */
751
-
752
-#preftoc {
753
- float: left;
754
- margin: 1em;
755
- width: 13em;
756
-}
757
-
758
-#preftoc li {
759
- border: 1px solid white;
760
-}
761
-
762
-#preftoc li.selected {
763
- background-color: #DDDDDD;
764
- border: 1px solid white;
765
- padding: 4px 0 0 4px;
766
-}
767
-
768
-fieldset {
769
- border: 1px solid #A6A6A6;
770
- margin: 1em 0 1em 0;
771
- padding: 0 1em 1em;
772
- line-height: 1.5em;
773
-}
774
-
775
-#preftoc a, #preftoc a:active {
776
- display: block;
777
-}
778
-
779
-#prefcontrol {
780
- clear: both;
781
- float: left;
782
- margin-top: 1em;
783
-}
784
-
785
-div.prefsectiontip {
786
- font-size: 95%;
787
- margin-top: 1em;
788
-}
789
-
790
-fieldset.operaprefsection {
791
- margin-left: 15em;
792
-}
793
-
794
-/* Search */
795
-
796
-#searchContent small {
797
- font-size: 100%;
798
-}
799
-
800
-#searchContent ol {
801
- padding-bottom: 3px;
802
-}
803
-
804
-#searchContent ol li a {
805
- font-weight: bold;
806
-}
807
-
808
-#searchContent p:first-child + p {
809
- display: none;
810
-}
811
-
812
-#searchContent p:first-child {
813
- display: none;
814
-}
815
-
816
-#searchContent br {
817
- display: none;
818
-}
819
-
820
-#searchContent li br {
821
- display: inline;
822
-}
823
-
824
-#powersearch {
825
- display: none;
826
-}
827
-
828
-/* Login */
829
-
830
-#userlogin table td:last-child p {
831
- padding-top: 0;
832
- margin-top: 0;
833
-}
834
-
835
-#userlogin table td:last-child p input {
836
- margin-top: 20px;
837
- font-size: 100%;
838
-}
839
-
840
-/* Main Menu */
841
-
842
-#mainMenu {
843
- position: absolute;
844
- top: 0px;
845
- left: 0px;
846
- z-index: 100;
847
- background-color: #C0C0FF;
848
- border-right: 1px solid #777777;
849
- border-bottom: 1px solid #777777;
850
- padding: 4px 0 4px 0;
851
-}
852
-
853
-.mainMenuItem a {
854
- font-size: 85%;
855
- padding: 2px 10px 2px 10px;
856
- _padding: 0 10px 2px 10px;
857
- display: block;
858
- color: black;
859
- text-decoration: none;
860
-}
861
-
862
-.mainMenuItem a:hover {
863
- color: white;
864
- background-color: #666666;
865
- text-decoration: none;
866
-}
867
-
868
-.mainMenuItemDiv {
869
- display: block;
870
- margin-top: 4px;
871
- border-bottom: 1px solid #999999;
872
- margin-bottom: 4px;
873
-}
874
-
875
-.editMiniItemDiv {
876
- display: block;
877
- margin-top: 4px;
878
- border-bottom: 1px solid #be8e00;
879
- margin-bottom: 4px;
880
- _margin-bottom: 2px;
881
-}
882
-
883
-/* Special Pages */
884
-
885
-.namespaceoptions {
886
- padding-top: 10px;
887
-}
888
-
889
-textarea[name=wpUploadDescription] {
890
- height: 100px;
891
-}
892
-
893
-textarea[name=wpReason] {
894
- height: 100px;
895
-}
896
-
897
-/* Thumbnails */
898
-
899
-div.thumb {
900
- margin-bottom: .5em;
901
- border-style: solid;
902
- border-color: transparent;
903
- _border: 0;
904
- width: auto;
905
-}
906
-
907
-div.thumb div {
908
- border: 1px solid #ccc;
909
- padding: 3px !important;
910
- background-color: #f9f9f9;
911
- font-size: 94%;
912
- text-align: center;
913
- overflow: hidden;
914
-}
915
-
916
-div.thumb div a img {
917
- border: 1px solid #ccc;
918
-}
919
-
920
-div.thumb div div.thumbcaption {
921
- border: none;
922
- text-align: left;
923
- line-height: 1.4em;
924
- padding: .3em 0 .1em 0;
925
-}
926
-
927
-div.magnify {
928
- float: right;
929
- border: none !important;
930
- background: none !important;
931
-}
932
-
933
-div.magnify a, div.magnify img {
934
- display: block;
935
- border: none !important;
936
- background: none !important;
937
-}
938
-
939
-div.tright {
940
- clear: right;
941
- float: right;
942
- border-width: .5em 0 .8em 1.4em;
943
- _border: 0px;
944
- _margin: .5em 0 .8em 1.4em;
945
-}
946
-
947
-div.tleft {
948
- float: left;
949
- margin-right: .5em;
950
- border-width: .5em 1.4em .8em 0;
951
- _border: 0px;
952
- _margin: .5em 1.4em .8em 0;
953
-}
954
-
955
-.hiddenStructure {
956
- display: none;
957
-}
958
-
959
-img.tex {
960
- vertical-align: middle;
961
-}
962
-
963
-span.texhtml {
964
- font-family: serif;
965
-}
966
-
967
-/* Misc Styling */
968
-
969
-div[class=fullImageLink] a:last-child {
970
- display: block;
971
- padding-top: 10px;
972
-}
973
-
974
-.rcoptions {
975
- line-height: 150%;
976
-}
977
-
978
-span.searchmatch {
979
- color: red;
980
-}
981
-
982
-#relatedChanges a:first-child {
983
- font-size: 120%;
984
- font-weight: bold;
985
-}
986
-
987
-#relatedChanges a:first-child:before {
988
- content: "for ";
989
-}
990
-
991
-#relatedChanges hr {
992
- display: none;
993
-}
994
-
995
-#catlinks {
996
- margin-top: 20px;
997
- border: 1px solid #aaa;
998
- background-color: #EFEFEF;
999
- padding: 5px;
1000
- padding-left: 7px;
1001
- display: none;
1002
-}
1003
-
1004
-#catlinks p {
1005
- margin: 0;
1006
- padding: 0;
1007
-}
1008
-
1009
-#catlinks a[title="Special:Categories"] {
1010
- font-weight: bold;
1011
-}
1012
-
1013
-/* Nix style stuff; should include nix-common.css */
1014
-
1015
-pre {
1016
- margin-left: 1.5em;
1017
- margin-right: 1.5em;
1018
- border: 1px solid #6185a0;
1019
- padding: 6px 6px;
1020
- color: #600000;
1021
- background: #f4f4f8;
1022
- white-space: pre-wrap;
1023
-}
delft/wiki-skins/nixos/main.win.css
deleted
-74
@@ -1,74 +0,0 @@
1
-
2
-#bodyContent, #lastmod {
3
- font-family: Lucida Grande, Arial, Helvetica, sans-serif;
4
-}
5
-
6
-h1, h2, h3, h4, h5, h6 {
7
- font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
8
-}
9
-
10
-#bodyContent p {
11
- font-size: 10pt;
12
- line-height: 150%;
13
-}
14
-
15
-#bodyContent td {
16
- font-size: 10pt;
17
-}
18
-
19
-#bodyContent blockquote {
20
- font-size: 10pt;
21
- line-height: 130%;
22
-}
23
-
24
-#bodyContent blockquote pre {
25
- font-size: 10pt;
26
- line-height: 110%;
27
- border-left: 0px;
28
- border: 1px solid #CCCCCC;
29
-}
30
-
31
-#bodyContent ul, #bodyContent ol, #bodyContent dl {
32
- font-size: 10pt;
33
-}
34
-
35
-#bodyContent blockquote ul, #bodyContent blockquote ol, #bodyContent blockquote dl {
36
- font-size: 10pt;
37
-}
38
-
39
-#loginText {
40
- font-size: 10pt;
41
-}
42
-
43
-.menuItem {
44
- font-weight: bold;
45
-}
46
-
47
-#toc ul, #toc ul ul, .toc ul ul, #toc li, #toc li li {
48
- font-size: 9pt;
49
-}
50
-
51
-textarea, code, blockquote pre {
52
- font: 9pt Courier New, monospace;
53
-}
54
-
55
-#lastmod {
56
- font-size: 10pt;
57
-}
58
-
59
-fieldset {
60
- font-size: 10pt;
61
-}
62
-
63
-#searchField {
64
- font-weight: normal;
65
- font-family: Arial, Helvetica, sans-serif;
66
- font-size: 9pt;
67
- _font-family: Lucida Grande, Arial, Helvetica, sans-serif;
68
- _font-size: 9pt;
69
-}
70
-
71
-textarea {
72
- width: 80%;
73
- overflow: auto;
74
-}
delft/wiki-skins/nixos/nixos-lores.png
Binary files a/delft/wiki-skins/nixos/nixos-lores.png and /dev/null differ
delft/wiki-skins/nixos/wikilogo.small.gif
Binary files a/delft/wiki-skins/nixos/wikilogo.small.gif and /dev/null differ
delft/wiki-skins/nixos/wikilogo.small.png
Binary files a/delft/wiki-skins/nixos/wikilogo.small.png and /dev/null differ