diff options
Diffstat (limited to 'www')
127 files changed, 0 insertions, 3962 deletions
diff --git a/www/bcg.png b/www/bcg.png Binary files differdeleted file mode 100644 index d4f7ac8..0000000 --- a/www/bcg.png +++ /dev/null diff --git a/www/favicon.ico b/www/favicon.ico Binary files differdeleted file mode 100644 index 6d93ef7..0000000 --- a/www/favicon.ico +++ /dev/null diff --git a/www/inc/comment.inc.php b/www/inc/comment.inc.php deleted file mode 100644 index 627a747..0000000 --- a/www/inc/comment.inc.php +++ /dev/null @@ -1,33 +0,0 @@ -<?php -/* - * The HTML contained in this file is valid XHTML 1.0 Strict - */ - -echo "<div id=\"comment_block\">\n"; - -?> - <?php echo"<div id=\"showhideform\"><strong> " . __('Post a Comment') . "</strong>:"; ?> - <span class="comment_toggle"> - [ - <?php echo"<a href=\"javascript:toggle_comment()\"><span id=\"showlink\">" . __('Show Form') . "</span><span id=\"hidelink\" style=\"display:none;\">" . __('Hide Form') . "</span></a>"; ?> - ] - </span> - </div> - - <div id="comment_form" style="display: none;"> -<?php -$page->form_start($ThisUrl, "post", NULL); -$page->input("text", "commentname", $username, __('Name:'), NULL, _('Enter your name.') ); -$page->input("checkbox", "savecommentname", "1", __('Remember Name:'), "yes", - __('Should the browser remember your name?')); -$magic_number = random_digits(4); -//temporary. should generate an image instead -echo "<div class=\"row\"><div class=\"control\">$magic_number</div></div>\n"; -$page->input("hidden", "commentkolacek", md5($magic_number), NULL, NULL, NULL); -$page->input("text", "commentspamcheck", "", __('Retype PIN Above:'), NULL, __('Enter the number shown above.')); -$page->input("textarea", "commentdata", "", __('Comment') . " :" , NULL, __('Allowed HTML tags: a,b,i,ul,li,blockquote,br.') ); -$page->input("submit", "", __('Send') , NULL, NULL, NULL); -$page->form_end(); -?> - </div> -</div> diff --git a/www/inc/config.inc.php b/www/inc/config.inc.php deleted file mode 100644 index 5bfb36e..0000000 --- a/www/inc/config.inc.php +++ /dev/null @@ -1,71 +0,0 @@ -<? -#base dirname - eregi("^(.*)/[^/]*$", $ScriptFileName, $x); - $root = $x[1]; -# =========================================================================== -#images - $img["left"] = "left.png"; - $img["right"] = "right.png"; - $img["top"] = "top.png"; -# =========================================================================== -#thumbnail behaviour - //keep this unset for dynamic thumbnail size - //$thumbsize = "fixed"; - //How the previous and Next thumbnails should be scaled - // 1 is 1:1, >1 is smaller, <1 is bigger - $PNthumbScale = 1; -# =========================================================================== -#colors and backgrounds -# this has been removed in favour of custom CSS stylesheets -# =========================================================================== -#app info - $app["name"] = "Original"; // opensource remote image gallery, - // initialy not as lovely - $app["url"] = "http://jimmac.musichall.cz/original.php3"; - $app["version"] = "0.8-cvs"; -# =========================================================================== -# EXIF metadata app path (helper app for php3 and older php4) -# uncomment the method you want to use if you want EXIF data reported -# --------------------------------------------------------------------------- -## use internal function of PHP 4 (does not seem to work yet): -# $exif_prog = "php4"; -# --------------------------------------------------------------------------- -## use metacam (give absolute path to the binary on the server): -# $exif_prog = "/usr/local/bin/metacam"; -## what EXIF data to show (if unset, all will be shown) -## some example fields for metacam: -# $exif_show = array("Image Capture Date", "Make", "Model", -# "Exposure Program", "Exposure Mode", -# "Focal Length", "Exposure Time", -# "Aperture Value", "ISO Speed Rating", "White Balance", -# "Flash", "Scene Capture Type", -# "Metering Mode", "Max Aperture Value", "Shutter Speed Value" -# ); -# --------------------------------------------------------------------------- -## use jhead (give absolute path to the binary on the server): -# $exif_prog = "/usr/local/bin/jhead"; -## what EXIF data to show (if unset, all will be shown) -## some example fields for jhead: -# $exif_show = array( -# "Date/Time", -# "Camera make", -# "Camera model", -# "Focal length", -# "Exposure time", -# "Aperture Value", -# "ISO equiv.", -# "Exposure", -# ); -# =========================================================================== -## Gallery Directory -# This is a path relative to the directory where original is installed -# eg. it can be "../galleries" to use a galleries dir above the original dir. - $gallery_dir="galleries"; - -#css styles - $themes = array( - "default" => "inc/styles/default/default.css", - "ie" => "inc/styles/ie/ie.css", - "gorilla" => "inc/styles/gorilla/gorilla.css" - ); -?> diff --git a/www/inc/exif.inc.php b/www/inc/exif.inc.php deleted file mode 100644 index be76168..0000000 --- a/www/inc/exif.inc.php +++ /dev/null @@ -1,139 +0,0 @@ -<?php -if ($exif_prog=="php4") { - // php internal handling - // read_exif_data is supposed to read the whole jpeg into memory, - // so we'll use the thumbnails to save it - // THIS IS COMPLETELY UNTESTED!!!! - $exif_array = read_exif_data("$thumb"); - if ($exif_style=="descriptive") { - // fancy table look - echo "<table border=\"0\" align=\"center\">\n"; - //co ukazat (podle exif_show - if ($exif_show) { - while(list($k,$v)=each($exif_array)) { - while ($x = current($exif_show)) { - if ($x==$k) { - echo "<tr>"; - echo "<td align=\"right\">$k :</td>"; - echo "<td><b>$v</b></td>"; - echo "</tr>\n"; - } - next($exif_show); - } - } - } else { - //ukaze vsechno - while(list($k,$v)=each($exif_array)) { - echo "<tr>"; - echo "<td align=\"right\">$k :</td>"; - echo "<td><b>$v</b></td>"; - echo "</tr>\n"; - } - } - echo "<tr>\n"; - echo "<td></td>"; - # only show if EXIF header exists - if ($exif_array["Make"]) { - echo "<td><a href=\"$ThisScript?galerie=$galerie&snimek=$snimek"; - echo "&exif_style=simple&show_thumbs=$show_thumbs\">"; - echo "<b>display line</b></a></td>\n"; - } - echo "</tr>\n"; - echo "</table>\n"; - echo "</table>"; - } else { - // in one line - if ($exif_show) { - while(list($k,$v)=each($exif_array)) { - while ($x = current($exif_show)) { - if ($x==$k) { - echo "$v | "; - } - next($exif_show); - } - } - } else { - while(list($k,$v)=each($exif_array)) { - echo "$v | "; - } - } - # only show if EXIF header exists - if ($exif_array["Make"]) { - echo "<a href=\"$ThisScript?galerie=$galerie&snimek=$snimek"; - echo "&exif_style=descriptive&show_thumbs=$show_thumbs\">"; - echo "<b>display table</b></a>\n"; - echo "</p>\n"; - } - } - -} else { - // the old code, handles e.g. metacam and jhead as EXIF extractors - // loading lq means it won't work if the convertor doesn't copy EXIF data - // (newer ImageMagick can) - exec("$exif_prog \"$gallery_dir/$galerie/lq/img-$snimek.jpg\"", $exif_data, $exif_status); - if ($exif_status!="2") { - if ($exif_style=="descriptive") { - // fancy table look - echo "<table border=\"0\" align=\"center\">\n"; - while ($x = current($exif_data)) { - eregi("^ *([^:]*): *(.*)", $x, $y); - //filter according to $exif_show array - if (!$exif_show) { //all fields shown - echo "<tr>"; - echo "<td align=\"right\">$y[1] :</td>"; - echo "<td><b>$y[2]</b></td>"; - echo "</tr>\n"; - } else { - reset($exif_show); - while ($z = current($exif_show)) { - //echo ".$z. ::: .$y[1].<br>"; - if (trim($z) == trim($y[1])) { - echo "<tr>"; - echo "<td align=\"right\">$y[1] :</td>"; - echo "<td><b>$y[2]</b></td>"; - echo "</tr>\n"; - } - next($exif_show); - } - } - next($exif_data); - } - echo "<tr>\n"; - echo "<td></td>"; - # only show if EXIF header exists - if ($y[1]!="File") { // don't show when no EXIF - echo "<td><a href=\"$ThisScript?galerie=$galerie&snimek=$snimek"; - echo "&exif_style=simple&show_thumbs=$show_thumbs\">"; - echo "<b>display line</b></a></td>\n"; - } - echo "</tr>\n"; - echo "</table>\n"; - } else { - //simple plaintext look - echo "<p class=\"exif\" align=\"center\">"; - while ($x = current($exif_data)) { - eregi("^ *([^:]*): *(.*)", $x, $y); - if (!$exif_show) { //all fields shown - echo "$y[2] |"; - } else { - reset($exif_show); - while ($z = current($exif_show)) { - if (trim($z) == trim($y[1])) { - echo "$y[2] | "; - } - next($exif_show); - } - } - next($exif_data); - } - # only show if EXIF header exists - if ($y[1]!="File") { - echo "<a href=\"$ThisScript?galerie=$galerie&snimek=$snimek"; - echo "&exif_style=descriptive&show_thumbs=$show_thumbs\">"; - echo "<b>display table</b></a>\n"; - echo "</p>\n"; - } - } - } -} -?> diff --git a/www/inc/footer.inc.php b/www/inc/footer.inc.php deleted file mode 100644 index 7143fd5..0000000 --- a/www/inc/footer.inc.php +++ /dev/null @@ -1,27 +0,0 @@ -<? -/* -echo "<p class=\"copyright\">\n"; -echo "<a href=\"http://jigsaw.w3.org/css-validator/validator?uri="; -echo "http://$HostName$ThisScript\">"; -echo "<img align=\"top\" style=\"border:0;width:88px;height:31px\""; -echo " src=\"http://jigsaw.w3.org/css-validator/images/vcss\""; -echo " alt=\"Valid CSS!\">"; -echo "</a>\n"; - -echo "<a href=\"http://validator.w3.org/check?uri="; -echo "http://$HostName$ThisScript\">"; -echo "<img align=\"top\" style=\"border:0;width:88px;height:31px\""; -echo " src=\"http://www.w3.org/Icons/valid-html401\""; -echo " alt=\"Valid HTML 4.01!\">"; -echo "</a>\n"; -*/ - -echo "\n\n<div class=\"footer\">"; -echo "Generated by\n <em>"; -echo "<a href=\"" . $app["url"] . "\">"; -echo $app["name"]; -echo "</a>"; -echo " ver. " . $app["version"]; -echo "</em>\n"; -echo "</div>\n"; -?> diff --git a/www/inc/funkce.inc.php b/www/inc/funkce.inc.php deleted file mode 100644 index 2a1e8cc..0000000 --- a/www/inc/funkce.inc.php +++ /dev/null @@ -1,96 +0,0 @@ -<?php -function navigation ($gallery, $snapshot, $image) { - global $gallery_dir, $root, $ThisScript, $textnav, $img, - $show_thumbs, $exif_style, $PNthumbScale; - - $next = $snapshot + 1; - $prev = $snapshot - 1; - - if (!$image) { // this will render a navigation bar - max 3 buttons - echo "\n<div class=\"navbuttons\">\n"; - echo "<div class=\"navbuttonsshell\">\n"; - if ($snapshot > 1) { //previous - echo "<a id=\"previcon\" href=\"$ThisScript?galerie=$gallery&snimek=$prev"; - echo "&exif_style=$exif_style&show_thumbs=$show_thumbs\">"; - echo "< previous</a>\n"; - } - echo " "; - if (is_file("$gallery_dir/$gallery/lq/img-$next.jpg")) { //next - echo "<a id=\"nexticon\" href=\"$ThisScript?galerie=$gallery&snimek=$next"; - echo "&exif_style=$exif_style&show_thumbs=$show_thumbs\">"; - echo "next ></a>\n"; - } - echo "</div>\n</div>\n"; - } elseif ($image=="prev") { //previous thumbnail - if ($snapshot > 1) { //previous - echo "<div class=\"prevthumb\">"; - echo "<a href=\"$ThisScript?galerie=$gallery&snimek=$prev"; - echo "&exif_style=$exif_style&show_thumbs=$show_thumbs\">"; - if (file_exists("$gallery_dir/$gallery/thumbs/img-$prev.png")) { - $Pthumb = "$gallery_dir/$gallery/thumbs/img-$prev.png"; - } else { - $Pthumb = "$gallery_dir/$gallery/thumbs/img-$prev.jpg"; - } - $v = getimagesize("$root/$Pthumb"); - echo "<img alt=\"Previous\" src=\""; - echo $Pthumb . "\" width=\"" . round($v[0]/$PNthumbScale); - echo "\" height=\"" . round($v[1]/$PNthumbScale) . "\" />"; - echo "<br />Previous"; - echo "</a></div>\n"; - } - } else { //next thumbnail - if (is_file("$gallery_dir/$gallery/lq/img-$next.jpg")) { - echo "<div class=\"nextthumb\">"; - echo "<a href=\"$ThisScript?galerie=$gallery&snimek=$next"; - echo "&exif_style=$exif_style&show_thumbs=$show_thumbs\">"; - if (file_exists("$gallery_dir/$gallery/thumbs/img-$next.png")) { - $Nthumb = "$gallery_dir/$gallery/thumbs/img-$next.png"; - } else { - $Nthumb = "$gallery_dir/$gallery/thumbs/img-$next.jpg"; - } - $v = getimagesize("$root/$Nthumb"); - echo "<img alt=\"Next\" src=\""; - echo $Nthumb . "\" width=\"" . round($v[0]/$PNthumbScale); - echo "\" height=\"" . round($v[1]/$PNthumbScale) . "\" />"; - echo "<br />Next"; - echo "</a></div>\n"; - } - } - -} - -function check($file) { - global $gallery_dir, $page; - -# if (eregi("[^0-9a-z\_\-\ ]",$file) || !file_exists("$gallery_dir/$file")) { -# if (eregi("CVS",$file) || !file_exists("$gallery_dir/$file")) { - if (!file_exists("$gallery_dir/$file")) { - echo "funkce.inc.php/check(): Bad input"; - $page->footer(); - exit; - } -} - -function browserCheck() { - global $HTTP_USER_AGENT; - - if (eregi("(MSIE.[456789]).*Mac.*",$HTTP_USER_AGENT)) { - return("macie4+"); - } elseif (eregi("(MSIE.[678])",$HTTP_USER_AGENT)) { - return("ie6+"); - } elseif (eregi("(MSIE.[45])",$HTTP_USER_AGENT)) { - return("ie4+"); - } elseif (eregi("Opera",$HTTP_USER_AGENT)) { - return("opera"); - } elseif (eregi("(Mozilla.4)",$HTTP_USER_AGENT)) { - return("netscape4"); - } elseif (eregi("(Mozilla.[5-9])",$HTTP_USER_AGENT)) { - return("mozilla"); - } elseif (eregi("KMeleon",$HTTP_USER_AGENT)) { - return("mozilla"); - } else { - return("Netscape3"); - } -} - -?> diff --git a/www/inc/global.js b/www/inc/global.js deleted file mode 100644 index ff8ec21..0000000 --- a/www/inc/global.js +++ /dev/null @@ -1,79 +0,0 @@ -function setActiveStyleSheet(title) { - var i, a, main; - for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { - if(a.getAttribute("rel").indexOf("style") != -1 - && a.getAttribute("title")) { - a.disabled = true; - if(a.getAttribute("title") == title) a.disabled = false; - } - } - if (title!="") { - writeCookie(title); - } -} - -function getInactiveStyleSheet() { - var i, a; - for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { - if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && a.disabled) return a.getAttribute("title"); - } - return null; -} - -function readCookie() { - var theme = document.cookie; - var theme = unescape(theme); - - return theme; -} - -function writeCookie(theme) { - //FIXME - set expires - var original_cookie = "theme=" + escape(theme); - document.cookie = original_cookie; -} - -function checkForTheme() { - var theme = readCookie(); - //alert(theme); - if (theme=="undefined") { - var theme = "none"; - } -} - -// what a kludge. Luckily I found a clean way -function alignForGorilla() { -var image_preview = document.getElementById('preview'); -image_preview.style.marginLeft = "-" + (image_preview.width/2 + 16) + "px"; -} - -// to hide and show the comment block -// inspired by www.wikipedia.org -function toggle_comment() { - var comment_form = document.getElementById('comment_form'); - var showlink=document.getElementById('showlink'); - var hidelink=document.getElementById('hidelink'); - if(comment_form.style.display == 'none') { - comment_was = comment_form.style.display; - comment_form.style.display = ''; - hidelink.style.display=''; - showlink.style.display='none'; - } else { - comment_form.style.display = comment_was; - hidelink.style.display='none'; - showlink.style.display=''; - } -} - -function toggle_exif() { - var exif_table = document.getElementById('exif_table'); - var exif_line = document.getElementById('exif_line'); - if(exif_table.style.display == 'none') { - exif_table.style.display = 'block'; - exif_line.style.display = 'none'; - } else { - exif_table.style.display = 'none'; - exif_line.style.display = 'block'; - } -} - diff --git a/www/inc/header.inc.php b/www/inc/header.inc.php deleted file mode 100644 index 3242c1c..0000000 --- a/www/inc/header.inc.php +++ /dev/null @@ -1,14 +0,0 @@ -<div class="stylenavbar"> -[ style: -<? -foreach ($themes as $skin => $url) { - echo "<a href=\"#\" title=\"$skin\""; - echo " onclick=\"setActiveStyleSheet('$skin')\">"; - echo "$skin</a> \n"; -} -?> -] -</div> -<? -echo "<h1 class=\"title\"><a href=\"http://$HostName$ThisScript\">Photo Gallery<span /></a></h1>\n\n"; -?> diff --git a/www/inc/javascript-eek.inc.php b/www/inc/javascript-eek.inc.php deleted file mode 100644 index 3672c8c..0000000 --- a/www/inc/javascript-eek.inc.php +++ /dev/null @@ -1,112 +0,0 @@ -<script language="JavaScript"> -// javascript snipplets mostly nicked from -// http://liorean.web-graphics.com/scripts - -//cookie handling - -var cookie={ // The Cookie Handler main object - Get:function(n){ // Function for getting cookies - var re=new RegExp(n+'=([^;]*);?','gi'); // Create regex for cookies fetching - var r=re.exec(document.cookie)||[]; // Fetch cookie using regex - return unescape(r.length>1?r[1]:null) // Return unescaped cookie - }, - Set:function(n,v,e,p,d,s){ // Function for setting cookies - var t=new Date; // Get current time and date - if(e) // If days to expiry is set - t.setTime(t.getTime()+(e*8.64e7)); // calculate expiry date - document.cookie=n+'='+escape(v)+'; '+(!e?'':'; expires='+t.toUTCString())+(!p?'':'; path='+p)+(!d?'':'; domain='+d)+(!s?'':'; secure') // Set cookie - }, - Del:function(n,p,d){ // Function for deleting cookies - var t=cookie.Get(n); // Get cookie - document.cookie=n+'='+(!p?'':'; path='+p)+(!d?'':'; domain='+d)+'; expires=Thu, 01-Jan-70 00:00:01 GMT'; // Delete cookie - return t // Return the deleted cookie - }, - Sup:function(){ // Function for detecting cookies support - cookie.Set('c',true); // Set dummy cookie - return cookie.Del('c'); // Return whether dummy was written - } -}; - - -// theme switching - -var style={ // Theme Switcher main object - Set:function(t){ // Function for setting active theme - for(var i in this.col) // For each existing title - for(var j=0,f;(f=(j<this.col[i].length)?this.col[i][j]:null);j++) // And all stylesheets of that title - f.disabled=i!=t?true:false; // Set to enabled or disabled depending on whether title matches user input - }, - Get:function(){ // Function for determining active theme - for(var i in this.col) // For each existing title - if(!this.col[i][0].disabled) // Unless disabled - return i; // Return title - return this.Pref() // Otherwise try to determine preferred title - }, - Pref:function(){ // Function to determine preferred title - for(var i in this.col) // For each existing title - if(!this.col[i][0].disabled) // Unless disabled - return i; // Return title - return null // Otherwise return null - }, - sum:function(){ // Function to collect existing titles into a collection - var s=document.styleSheets,i=0; // Set needed variables - for(var f;(f=(i<s.length)?s[i]:null);i++) // For each existing stylesheet - switch(f.title){ // Read title - case '': // If none or blank - break; // Exit - default: // Otherwise - switch(typeof this.col[f.title]){ // Read title - case 'object': // If exists in collection - this.col[f.title][this.col[f.title].length]=f; // Add stylesheet to that title in the collection - break; // Exit - default: // Otherwise - this.col[f.title]=[f] // Add new titla to collection and add stylesheet to that title - } - } - }, - onload:function(){ // Function to send to onload handler - style.sum(); // Collect titles - if(cookie.Sup()){ // If cookies support exists - var c=cookie.Get('style'); // Get preferred theme from cookie - style.Set(c||style.Pref()) // Otherwise use the author specified - } - }, - onunload:function(){ // Function to send to onunload handler - if(cookie.Sup()){ // If cookies support exists - var s=style.Get(); // Get active theme - cookie.Set('style',s,356,'/') // Write active theme to cookie - } - }, - col:{} // Collection for titles -}; - -event.Add(style.onload); // Add onload handler -window.onunload=style.onunload; // Add onunload handler - - -// IE/Mac voodoo - -var event={ // The Event Handler main object - Add:function(f){ // Function for adding onload handlers - event.col[event.col.length]=f; // Add event handler to collection - if(typeof window.addEventListener!='undefined') // If W3C compliant - window.addEventListener('load',f,false); // Apply event handler - else if(!event.ieSet) // Otherwise, unless already set - if(typeof document.onreadystatechange!='undefined') // If supported - document.onreadystatechange=event.onload; // Add In event handler handler - event.ieSet=true; // Specify that event handler already is set - return(typeof window.addEventListener!='undefined') // Return whether W3C compliant - }, - onload:function(){ // Function for handling multiple onload handlers in IE - var m=/mac/i.test(navigator.platform); // Detect whether mac - if(typeof document.readyState!='undefined') // If supported - if(m?document.readyState!='interactive':document.readyState!='complete') // And not already finished - return; // Exit - for(var i=0,f;(f=(i<event.col.length)?event.col[i]:null);i++) // For all event handlers - f(); // Run event handler - return // Exit - }, - ieSet:false, // Variable to say whether event handler is set or not - col:[] // Collection for event handlers -}; -</script> diff --git a/www/inc/javascript.inc.php b/www/inc/javascript.inc.php deleted file mode 100644 index f2e3deb..0000000 --- a/www/inc/javascript.inc.php +++ /dev/null @@ -1,51 +0,0 @@ -<script language="JavaScript"> -function setActiveStyleSheet(title) { - var i, a, main; - for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { - if(a.getAttribute("rel").indexOf("style") != -1 - && a.getAttribute("title")) { - a.disabled = true; - if(a.getAttribute("title") == title) a.disabled = false; - } - } - if (title!="") { - writeCookie(title); - } -} - -function getInactiveStyleSheet() { - var i, a; - for(i=0; (a = document.getElementsByTagName("link")[i]); i++) { - if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && a.disabled) return a.getAttribute("title"); - } - return null; -} - -function readCookie() { - var theme = document.cookie; - var theme = unescape(theme); - - return theme; -} - -function writeCookie(theme) { - //FIXME - set expires - var original_cookie = "theme=" + escape(theme); - document.cookie = original_cookie; -} - -function checkForTheme() { - var theme = readCookie(); - //alert(theme); - if (theme=="undefined") { - var theme = "none"; - } -} - -// what a kludge. Luckily I found a clean way -function alignForGorilla() { -var image_preview = document.getElementById('preview'); -image_preview.style.marginLeft = "-" + (image_preview.width/2 + 16) + "px"; -} - -</script> diff --git a/www/inc/l10nget.inc.php b/www/inc/l10nget.inc.php deleted file mode 100644 index f04b18c..0000000 --- a/www/inc/l10nget.inc.php +++ /dev/null @@ -1,17 +0,0 @@ -<?php - -function get_lang_from_agent($accept) { - - $acceptarr = explode("," , $accept); - foreach ($acceptarr as $lang) { - //get rid of trailing garbage - $lang = ereg_replace("^(.*)\;.*","\\1", $lang); - if (is_dir("l10n/$lang")) { - return $lang; - exit; - } - //no translation for accept language - return "en"; - } -} -?> diff --git a/www/inc/styles/CVS/Entries b/www/inc/styles/CVS/Entries deleted file mode 100644 index 138bf3e..0000000 --- a/www/inc/styles/CVS/Entries +++ /dev/null @@ -1,2 +0,0 @@ -D/gorilla//// -D/default//// diff --git a/www/inc/styles/CVS/Repository b/www/inc/styles/CVS/Repository deleted file mode 100644 index 4339a69..0000000 --- a/www/inc/styles/CVS/Repository +++ /dev/null @@ -1 +0,0 @@ -original/www/inc/styles diff --git a/www/inc/styles/CVS/Root b/www/inc/styles/CVS/Root deleted file mode 100644 index 16bd216..0000000 --- a/www/inc/styles/CVS/Root +++ /dev/null @@ -1 +0,0 @@ -:ext:jimmac@cvs.tuxfamily.org:/cvsroot/original diff --git a/www/inc/styles/classic/bcg.png b/www/inc/styles/classic/bcg.png Binary files differdeleted file mode 100644 index d4f7ac8..0000000 --- a/www/inc/styles/classic/bcg.png +++ /dev/null diff --git a/www/inc/styles/classic/classic.css b/www/inc/styles/classic/classic.css deleted file mode 100644 index da56645..0000000 --- a/www/inc/styles/classic/classic.css +++ /dev/null @@ -1,338 +0,0 @@ -/* Default stylesheet - ================== - - stylesheet & artwork - (c) 2003 Jakub 'jimmac' Steiner - -*/ - -body { - background-color: #f6f6f6; - background: url("bcg.png") top left repeat; - /* - margin: 0px 50px 0px 50px; - width: auto; - */ - margin: auto; - width: 770px; - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; -} - -img { - border: 0px; -} - -.bigthumbnails img { - width: 120px; - height: 80px; -} - -.bigthumbnails a.portrait img { - width: 52px; -} - -a:link { - color: #909090; -} - -a:visited { - color: #808080; -} - -a:hover { - color: #f0f0f0; - background-color: #707070; -} - - -h1.title { - background-color: #a7a9a6; - font-size: 16pt; - color: #808080; - width: 100%; - margin-bottom: 0px; - padding: 5px; - -} - -.title a { - display: block; - position:relative; - width:100%; - height:48px; - margin:0; padding:0; -} - -.title a:hover { - border: 0px; - background-color: #a7a9a6; -} - -.title a span { - /* this overlays text below with an image */ - display: block; - position:absolute; left:0; top:0; z-index:1; - width:338px; height:48px; - margin:0; padding:0; - background-image: url("title.png"); - background-attachment: top left; - background-repeat: no-repeat; -} - -div.thumbroll { - margin: 10px 0px 4px 0px; - min-height: 29px; -} - -p.bigthumbnails { - text-align: center; -} - -p.bigthumbnails a { - padding: 0px; - margin: 0px; - border: 0px; - -} -/* -p.bigthumbnails a:link img { - border: 1px solid white; -} - -p.bigthumbnails a:hover img { - border: 1px solid #909090; - -} -*/ - -a#minus,a#plus { - display: block; - position: relative; - float: left; - width:24px; - height:24px; - margin:0px; padding:0px; -} - -a#minus { - background: url("minus.png") top left no-repeat; -} - -a#plus { - background: url("plus.png") top left no-repeat; -} - -a#zip { - /* display: block; */ - position: relative; - width:16px; - height:16px; - margin:0px; padding:0px; - font-size: 9px; -} - -a#zip span { - background: url("zip.png") top left no-repeat; - position:absolute; left:0; top:0; z-index:1; - width:16px; height:16px; -} - -div.navigation { - background-color: #f6f6f6; - width: 100%; - padding: 5px; - font-size: 10px; -} - -div.navigation a { - color: #a0a0a0; - font-weight: bold; -} - -div.footer { - font-size: 9px; - width: 100%; - margin-top: 40px; - padding: 5px 5px 20px 5px; - clear: both; - border-top: 1px dotted #909090; -} - -div.year { - font-size: 11pt; - float: left; - margin: 10px; -} - -div.month { - margin: 0px 0px 0px 2em; - padding: 2px; -} - -div.month h4 { - margin: 0px 0px 3px 0px; -} - -.author, .date, .desc { - display: block; -} - -.date { - color: gray; -} - -.date:before { - content: ">>"; -} - -/* ul won't work on safari with float: left */ -div.month p { - margin: 2px; - padding: 0px 0px 0px 6px; - list-style: none; - font-size: 10px; -} - -div.month p.restricted { - background: transparent url("restricted.png") top left no-repeat; - padding: 0px 0px 3px 16px; -} - -div#image { - /* width: 800px; */ - display: block; - position: relative; - clear: both; - margin-left: auto; - margin-right: auto; - /* border: 1px solid black; */ - min-height: 480px; /* only works in gecko :/ */ -} - -img#preview { - position: relative; - float: left; - margin-right: 8px; -} - -div.comment { - margin: 2em 0px; - color: #808080; - font-size: 9px; -} - -div.comment span { - color: black; - font-weight: bold; - font-size: 10px; -} - -div.navbuttons { - position: absolute; - top: 580px; left: 50%; - margin-left: 260px; /* 260px to the right of the center of the page */ - width: 64px; height: 32px; - z-index: 1; -} - -div.navbuttonsshell { - position: relative; - width: 100%; - margin: 2px; -} - -div.navbuttonsshell a#previcon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px; padding: 0; - top: 0px; - left: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the oveflow text */ - background: url("left.png") top left no-repeat; /* have a pixmap */ -} - -div.navbuttonsshell a#nexticon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px 4px 2px auto; padding: 0; - right: 4px; top: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the overflow text */ - background: url("right.png") top left no-repeat; /* have a pixmap */ -} - - -div.prevthumb,div.nextthumb { - margin-bottom: 1em; -} - -div.nextthumb a,div.prevthumb a { - text-decoration: none; -} - -div#mqhq { - margin: 2px 2px 4px 0px; - height: 32px; -} - -div#mqhq a { - display: block; - border: 1px solid #909090; - padding: 2px; - font-size: 10px; - background-color: #f6f6f6; - color: black; - float: left; - width: 48px; - text-align: center; - margin: 2px; - -moz-border-radius: 2px; -} - -div#mqhq a:hover { - background-color: #909090; - border: 1px solid black; - color: white; -} - -div.stylenavbar { - position:relative; - font-size: 9px; - margin: 4px 0px; - padding-bottom: 0px; -} - -/* Formatting of the user comments */ -/* -div.commententry { - border: 1px dotted pink; -} -*/ - -#comment_block .comment_toggle { - font-size: smaller; -} - -div.commentdata { - margin-bottom: 10px; -} - -div.name { - border-bottom: 1px dotted grey; - font-size: 10pt; - margin-bottom: 2px; -} - -textarea, input { - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; - -moz-border-radius: 3px; -} diff --git a/www/inc/styles/classic/classic.css.net b/www/inc/styles/classic/classic.css.net deleted file mode 100644 index c8a0f3f..0000000 --- a/www/inc/styles/classic/classic.css.net +++ /dev/null @@ -1,386 +0,0 @@ -/* Default stylesheet - ================== - - stylesheet & artwork - (c) 2003 Jakub 'jimmac' Steiner - -*/ - -body { - background-color: #f6f6f6; - background: url("bcg.png") top left repeat; - /* - margin: 0px 50px 0px 50px; - width: auto; - */ - margin: auto; - width: 770px; - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; -} - -img { - border: 0px; - width: 120px; - height: 80px; -} - -img#preview { - width: inherit; - height: inherit; -} - -a.portrait img { - width: 58px; -} - -a:link { - color: #909090; -} - -a:visited { - color: #808080; -} - -a:hover { - color: #f0f0f0; - background-color: #707070; -} - -a.hascomments { - background-image: url('hascomments.png'); - background-position: bottom right; - background-repeat: no-repeat; -} - -.month p>a { - display: block; -} - -.author, .description, .date { - display: block; - padding: 2px 0px 1em 4px; -} - -.date { - color: #666; -} - -.date:before { - content: ">> "; -} - -h1.title { - background-color: #a7a9a6; - font-size: 16pt; - color: #808080; - width: 100%; - margin-bottom: 0px; - padding: 5px; - -} - -.title a { - display: block; - position:relative; - width:100%; - height:48px; - margin:0; padding:0; -} - -.title a:hover { - border: 0px; - background-color: #a7a9a6; -} - -.title a span { - /* this overlays text below with an image */ - display: block; - position:absolute; left:0; top:0; z-index:1; - width:338px; height:48px; - margin:0; padding:0; - background-image: url("title.png"); - background-position: top left; - background-repeat: no-repeat; -} - -div.thumbroll { - margin: 10px 0px 4px 0px; - min-height: 29px; -} - -p.bigthumbnails { - text-align: center; -} - -p.bigthumbnails a { - display: block; - float: left; - padding: 0px 0px 18px 0px; - margin: 4px; - border: 0px; -} - -p { - clear: both; -} -/* -p.bigthumbnails a:link img { - border: 1px solid white; -} - -p.bigthumbnails a:hover img { - border: 1px solid #909090; - -} -*/ - -a#minus,a#plus { - display: block; - position: relative; - float: left; - width:24px; - height:24px; - margin:0px; padding:0px; -} - -a#minus { - background: url("minus.png") top left no-repeat; -} - -a#plus { - background: url("plus.png") top left no-repeat; -} - -a#zip { - /* display: block; */ - position: relative; - width:16px; - height:16px; - margin:0px; padding:0px; - font-size: 9px; -} - -a#zip span { - background: url("zip.png") top left no-repeat; - position:absolute; left:0; top:0; z-index:1; - width:16px; height:16px; -} - -div.navigation { - background-color: #f6f6f6; - width: 100%; - padding: 5px; - font-size: 10px; -} - -div.navigation a { - color: #a0a0a0; - font-weight: bold; -} - -div.footer { - font-size: 9px; - width: 100%; - margin-top: 40px; - padding: 5px 5px 20px 5px; - clear: both; - border-top: 1px dotted #909090; -} - -div.year { - font-size: 11pt; - float: left; - margin: 10px; -} - -div.month { - margin: 0px 0px 0px 2em; - padding: 2px; -} - -div.month h4 { - margin: 0px 0px 3px 0px; -} - -/* ul won't work on safari with float: left */ -div.month p { - margin: 2px; - padding: 0px 0px 0px 6px; - list-style: none; - font-size: 10px; -} - -div.month p.restricted { - background: transparent url("restricted.png") top left no-repeat; - padding: 0px 0px 3px 16px; -} - -div#image { - /* width: 800px; */ - display: block; - position: relative; - clear: both; - margin-left: auto; - margin-right: auto; - /* border: 1px solid black; */ - min-height: 480px; /* only works in gecko :/ */ -} - -img#preview { - position: relative; - float: left; - margin-right: 8px; -} - -div.comment { - margin: 2em 0px; - color: #808080; - font-size: 10pt; -} - -div.comment span { - color: black; - font-weight: bold; -} - -div.navbuttons { - position: absolute; - top: 580px; left: 50%; - margin-left: 260px; /* 260px to the right of the center of the page */ - width: 64px; height: 32px; - z-index: 1; -} - -div.navbuttonsshell { - position: relative; - width: 100%; - margin: 2px; -} - -div.navbuttonsshell a#previcon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px; padding: 0; - top: 0px; - left: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the oveflow text */ - background: url("left.png") top left no-repeat; /* have a pixmap */ -} - -div.navbuttonsshell a#nexticon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px 4px 2px auto; padding: 0; - right: 4px; top: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the overflow text */ - background: url("right.png") top left no-repeat; /* have a pixmap */ -} - - -div.prevthumb,div.nextthumb { - margin-bottom: 1em; -} - -div.nextthumb a,div.prevthumb a { - text-decoration: none; - background-color: transparent; -} - -div.nextthumb a:hover,div.prevthumb a:hover { - color: black; -} - -div#mqhq { - margin: 2px 2px 4px 0px; - height: 32px; -} - -div#mqhq a { - display: block; - border: 1px solid #909090; - padding: 2px; - font-size: 10px; - background-color: #f6f6f6; - color: black; - float: left; - width: 48px; - text-align: center; - margin: 2px; -} - -div#mqhq a:hover { - background-color: #909090; - border: 1px solid black; - color: white; -} - -div.stylenavbar { - position:relative; - font-size: 9px; - margin: 4px 0px; - padding-bottom: 0px; -} - -/* Formatting of the user comments */ - -div#comment_block { - margin-bottom: 40px; -} - -div#comment_form { - margin-top: 1em; -} - -div.commentdata { - padding-left: 1em; - color: black; - margin-bottom: 2em; -} - -div.user_comment { - background-color: #f6f6f6; - padding: 4px; -} - -div.name { - color: gray; - font-size: 9pt; - margin-bottom: 2px; -} - -textarea, input { - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; -} - -input[type="text"],textarea { - width: 300px; -} - -div.row { - margin-bottom: 1em; - } - -div.label { - margin-bottom: 4px; -} - -div.label a { - text-decoration: none; - cursor: help; - color: black; - border-bottom: 1px dotted gray; -} - -div.label a:hover { - background-color: transparent; -} diff --git a/www/inc/styles/classic/hascomments.png b/www/inc/styles/classic/hascomments.png Binary files differdeleted file mode 100644 index 957a459..0000000 --- a/www/inc/styles/classic/hascomments.png +++ /dev/null diff --git a/www/inc/styles/classic/left-16.png b/www/inc/styles/classic/left-16.png Binary files differdeleted file mode 100644 index 625a1ab..0000000 --- a/www/inc/styles/classic/left-16.png +++ /dev/null diff --git a/www/inc/styles/classic/left.png b/www/inc/styles/classic/left.png Binary files differdeleted file mode 100644 index bd5607c..0000000 --- a/www/inc/styles/classic/left.png +++ /dev/null diff --git a/www/inc/styles/classic/logo-mini.png b/www/inc/styles/classic/logo-mini.png Binary files differdeleted file mode 100644 index 8949154..0000000 --- a/www/inc/styles/classic/logo-mini.png +++ /dev/null diff --git a/www/inc/styles/classic/minus.png b/www/inc/styles/classic/minus.png Binary files differdeleted file mode 100644 index 19eaef3..0000000 --- a/www/inc/styles/classic/minus.png +++ /dev/null diff --git a/www/inc/styles/classic/plus.png b/www/inc/styles/classic/plus.png Binary files differdeleted file mode 100644 index 062d005..0000000 --- a/www/inc/styles/classic/plus.png +++ /dev/null diff --git a/www/inc/styles/classic/restricted.png b/www/inc/styles/classic/restricted.png Binary files differdeleted file mode 100644 index 33091eb..0000000 --- a/www/inc/styles/classic/restricted.png +++ /dev/null diff --git a/www/inc/styles/classic/right-16.png b/www/inc/styles/classic/right-16.png Binary files differdeleted file mode 100644 index 42e783f..0000000 --- a/www/inc/styles/classic/right-16.png +++ /dev/null diff --git a/www/inc/styles/classic/right.png b/www/inc/styles/classic/right.png Binary files differdeleted file mode 100644 index bc5bcc5..0000000 --- a/www/inc/styles/classic/right.png +++ /dev/null diff --git a/www/inc/styles/classic/title.png b/www/inc/styles/classic/title.png Binary files differdeleted file mode 100644 index 8a6ad6b..0000000 --- a/www/inc/styles/classic/title.png +++ /dev/null diff --git a/www/inc/styles/classic/zip.png b/www/inc/styles/classic/zip.png Binary files differdeleted file mode 100644 index 0bc44ab..0000000 --- a/www/inc/styles/classic/zip.png +++ /dev/null diff --git a/www/inc/styles/dark/bcg.png b/www/inc/styles/dark/bcg.png Binary files differdeleted file mode 100644 index d4f7ac8..0000000 --- a/www/inc/styles/dark/bcg.png +++ /dev/null diff --git a/www/inc/styles/dark/dark.css b/www/inc/styles/dark/dark.css deleted file mode 100644 index 78f82eb..0000000 --- a/www/inc/styles/dark/dark.css +++ /dev/null @@ -1,553 +0,0 @@ -/* Default stylesheet - ================== - - The default stylesheet needed a remake. Photos - simply look better on dark background. The color - scheme is derived form the Novell palette. - - Should not crash Internet Explorer anymore. - - stylesheet & artwork - (c) 2004 Jakub 'jimmac' Steiner - -*/ - -body { - /* - margin: 0px 50px 0px 50px; - width: auto; - */ - margin: 20px 20px 20px 100px; - font-family: Georgia, "Bitstream Vera Sans", sans-serif; - font-size: 13pt; - color: #eeeeec; - background: #2e3436 url('title.png') top left no-repeat fixed; -} - -img { - border: 0px; -} - -a:link { - color: #ffb02f; -} - -a:visited { - color: #e88000; -} - -a:hover { - color: #ffcc7a; -} - - -h1.title { - display: none; -} - -/* mini thumbnails */ - -div.thumbroll { - margin: 10px 0px 4px 0px; - min-height: 29px; -} - -div.thumbroll img { - border: 1px solid #6b6c69; - -moz-border-radius: 3px; - Filter: Gray; /* IE only */ -} - -div.thumbroll a:hover img { - border: 1px solid #ffb02f; - Filter: none; -} - -a#minus,a#plus { - display: block; - position: relative; - float: left; - width:16px; - height:16px; - margin:0px; padding:0px; -} - -a#minus { - background: url("minus-inactive.png") top left no-repeat; -} - -a#minus:hover { - background: url("minus.png") top left no-repeat; -} - -a#plus { - background: url("plus-inactive.png") top left no-repeat; -} - -a#plus:hover { - background: url("plus.png") top left no-repeat; -} - -a#zip { - display: inline-block; - position: relative; - width:16px; - height:16px; - margin:0px; padding:0px; - font-size: 9px; - color: #2e3436; -} - -a#zip span { - background: url("zip-inactive.png") top left no-repeat; - position:absolute; left:0; top:0; z-index:1; - width:16px; height:16px; -} - -a#zip:hover span { - background: url("zip.png") top left no-repeat; -} - -.month p { - display: block; - width: 200px; -} - -p span.desc, p span.author { - font-size: 10px; - margin-left: 5px; -} - -.month p>a:after, p span.desc:after, p span.author:after { - content: ", "; -} - -p span.date { - font-size: 9px; - margin-left: 5px; - color: #777; -} - -/* in the thumbnail page */ - -div#info { - margin-left: 6px; - padding-top: 6px; - clear: both; - font-size: 11px; -} - -div#info span.key { - font-weight: bold; -} - -p { - clear: both; -} - -p.bigthumbnails { - text-align: left; -} - -p.bigthumbnails a { - display: block; - float: left; - width: 130px; - height: 80px; - text-align: center; - padding: 30px 4px; - background-color: #232729; - margin: 4px; - border: 1px solid #6b6c69; - -moz-border-radius: 3px; - /* Neat, but too slow - opacity: .5; - */ - Filter: Gray; /* IE - I wish we had that in gecko */ -} - -p.bigthumbnails a.portrait { - padding: 10px 29px; - width: 80px; - height: 120px; /* why the extra pixels? */ -} - -p.bigthumbnails img { - /* landscapes */ - display: inline; - width: 120px; - height: 80px; -} - -a.portrait img { - /* portrait */ - width: 80px; - height: 120px; -} - -p.bigthumbnails a:hover { - background-color: #2b2c29; - margin: 3px; - border: 2px solid #ffb02f; - Filter: none; /* IE */ -} - -a.hascomments { - background: #232729 url('hascomments.png') 95% 95% no-repeat; -} - -div.navigation { - margin-top: 20px; - background-color: #5b5c59; - width: 100%; - padding: 5px; - font-size: 12px; - -moz-border-radius: 3px; -} - -div.navigation a:first-child { - padding-left: 24px; - background: url('home-inactive.png') top left no-repeat; -} - -div.navigation a:first-child:hover { - background: url('home.png') top left no-repeat; -} - -div.footer { - font-size: 11px; - width: 100%; - margin-top: 20px; - padding: 5px 5px 20px 5px; - clear: both; - border-top: 1px dotted #6b6c69; - color: #6b6c69; -} - -div.year { - color: #6b6c69; - font-size: 13pt; - float: left; - margin: 10px; -} - -div.month { - color: #babdb6; - margin: 0px 0px 0px 2em; - padding: 2px; -} - -div.month h4 { - margin: 10px 0px 5px 0px; -} - -/* ul won't work on safari with float: left */ -div.month p { - margin: 2px; - padding: 4px 4px 6px 6px; - list-style: none; - font-size: 12px; - border: 1px solid #444; - -moz-border-radius: 5px; -} - -div.month p.restricted>a { - background: transparent url("restricted-inactive.png") top left no-repeat; - padding: 0px 0px 3px 14px; -} - - -div.month p.restricted>a:hover { - background: transparent url("restricted.png") top left no-repeat; -} - -div#image { - /* width: 800px; */ - display: block; - position: relative; - clear: both; -} - -img#preview { - position: absolute; - top: 0px; - right: 0px; - bottom: 0px; - border: 10px solid #232729; - background-color: #6b6c69; - padding: 1px; - -moz-border-radius: 7px; - left: 0px; - margin-left: auto; - margin-right: auto; -} - -* html img#preview { /* should only match on IE; how pathetic */ - margin-left: -320px; - left: 50%; -} - -div.comment { - margin: 10px 0px 6px 0px; - color: #babdb6; - font-size: 11pt; - /* max-width: 50em; */ -} - -div.comment span { - color: #6b6c69; - font-weight: bold; -} - -div#log { - margin: 4px 0px 30px 0px; - font-size: 9pt; - color: #6b6c69; -} - -div.navbuttons { - display: none; -} - -div.prevthumb { - position: absolute; - margin-bottom: 1em; - font-size: 10px; - top: top; - left: 0px; - text-align: right; - padding: 4px; - /* background-color: #2e3436; */ - background-color: #232729; - -moz-border-radius: 5px; - opacity: .7; /* gecko, khtml */ - filter: alpha(opacity=70); /* IE */ -} - -div.nextthumb { - position: absolute; - margin-bottom: 1em; - font-size: 10px; - right: 0px; - top: top; - margin-left: auto; - padding: 4px; - /* background-color: #2e3436; */ - background-color: #232729; - -moz-border-radius: 5px; - opacity: .7; /* gecko, khtml */ - filter: alpha(opacity=70); /* IE */ -} - -div.nextthumb img, div.prevthumb img { - margin: 1px; - border: 1px solid #6b6c69; - -moz-border-radius: 3px; -} - -div.prevthumb a { - display: block; - text-decoration: none; - background: transparent url('left-inactive.png') bottom left no-repeat; - padding: 2px; -} - -div.nextthumb a { - display: block; - text-decoration: none; - background: transparent url('right-inactive.png') bottom right no-repeat; - padding: 2px; -} - -div.prevthumb a:hover { - background: transparent url('left.png') bottom left no-repeat; -} - -div.nextthumb a:hover { - background: transparent url('right.png') bottom right no-repeat; -} - -div.nextthumb a img,div.prevthumb a img { - Filter: Gray; /* IE - I wish we had that in gecko */ -} - -div.nextthumb a:hover img,div.prevthumb a:hover img { - border: 2px solid #ffb02f; - margin: 0px; - Filter: none; -} - -.exif { - color: #555; - margin: 20px auto 30px auto; - font-size: 8pt; - width: auto; - text-align: center; -} - -.exif tr td:first-child { - color: #babdb6; -} - -.exif td + td { - text-align: left; -} - -.exif span { - cursor: help; - border-bottom: 1px dotted #6b6c69; -} - -.exif a { - color: #9f4000; -} - -div#mqhq { - margin: 10px 2px 4px 0px; - height: 32px; -} - -div#mqhq a { - display: block; - border: 2px solid #6b6c69; - padding: 2px; - font-size: 10px; - background-color: #ffb02f; - color: black; - float: left; - width: 48px; - text-align: center; - margin: 2px; - -moz-border-radius: 3px; -} - -div#mqhq a:hover { - background-color: #2e3436; - border: 2px solid #ffb02f; - color: #ffb02f; -} - -div.stylenavbar { - position:absolute; - top: 0px; - right: 0px; - font-size: 9px; - padding: 4px; - opacity: 0.4; -} - -p.archives { - padding-top: 20px; - font-size: 9pt; - color: #444; -} - -p.archives a { - padding-left: 20px; - background: transparent url("zip-inactive.png") top left no-repeat; - text-decoration: none; - padding-bottom: 2px; - border-bottom: 1px dotted #df900f; - opacity: 0.5; -} - -p.archives a:hover { - background: transparent url("zip.png") top left no-repeat; - opacity: 1; -} - -.accesskey { - text-decoration: underline; -} -/* Formatting of the user comment stuff */ - -form { - padding-bottom: 40px; - clear: both; -} - -form #comment_block { - clear: both; - color: #ccc; - font-size: 10px; -} - -#comment_block #showhideform { - font-size: x-small; - margin-bottom: 10px; -} - -#comment_form { - font-size: 9pt; - padding-top: 20px; - width: 420px; - margin-bottom: 20px; - -moz-border-radius: 3px; -} - -.row { - clear: both !important; -} - -div.label { - float: left; - width: 110px; -} - -.label a { - color: white; - cursor: help; - border-bottom: 1px dotted #6b6c69; - text-decoration: none; -} - -div.control { - padding: 4px; - float: right; - width: 270px; -} - -div.user_comment { - clear: both; - margin-top: 40px; - background-color: #3a3a3a; - padding: 10px; - -moz-border-radius: 7px; -} - -div.user_comment div.commentdata { - margin: 10px; - font-size: 10pt; - margin-bottom: 20px; -} - -div.user_comment div.name { - color: #666; - font-size: 9pt; - margin-bottom: 2px; -} -div.user_comment div.name em { - font-weight: bold; -} - -textarea, input[type="text"] { - font-family: Georgia, "Bitstream Vera Sans", sans-serif; - font-size: 9pt; - color: #eeeeec; - background-color: #5b5c59; - -moz-border-radius: 3px; - border: 1px solid #888; - width: 100%; - padding: 4px; -} -input[type="submit"] { - -moz-border-radius: 3px; - border: 1px solid #888; - padding: 4px; - background-color: #5b5c59; - font-family: Georgia, "Bitstream Vera Sans", sans-serif; - font-size: 10pt; - color: #eeeeec; -} - - diff --git a/www/inc/styles/dark/hascomments.png b/www/inc/styles/dark/hascomments.png Binary files differdeleted file mode 100644 index 44729de..0000000 --- a/www/inc/styles/dark/hascomments.png +++ /dev/null diff --git a/www/inc/styles/dark/home-inactive.png b/www/inc/styles/dark/home-inactive.png Binary files differdeleted file mode 100644 index 16718e2..0000000 --- a/www/inc/styles/dark/home-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/home.png b/www/inc/styles/dark/home.png Binary files differdeleted file mode 100644 index d1f87e9..0000000 --- a/www/inc/styles/dark/home.png +++ /dev/null diff --git a/www/inc/styles/dark/left-16.png b/www/inc/styles/dark/left-16.png Binary files differdeleted file mode 100644 index 625a1ab..0000000 --- a/www/inc/styles/dark/left-16.png +++ /dev/null diff --git a/www/inc/styles/dark/left-inactive.png b/www/inc/styles/dark/left-inactive.png Binary files differdeleted file mode 100644 index 38f572d..0000000 --- a/www/inc/styles/dark/left-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/left.png b/www/inc/styles/dark/left.png Binary files differdeleted file mode 100644 index 62985d9..0000000 --- a/www/inc/styles/dark/left.png +++ /dev/null diff --git a/www/inc/styles/dark/logo-mini.png b/www/inc/styles/dark/logo-mini.png Binary files differdeleted file mode 100644 index 8949154..0000000 --- a/www/inc/styles/dark/logo-mini.png +++ /dev/null diff --git a/www/inc/styles/dark/minus-inactive.png b/www/inc/styles/dark/minus-inactive.png Binary files differdeleted file mode 100644 index e29159f..0000000 --- a/www/inc/styles/dark/minus-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/minus.png b/www/inc/styles/dark/minus.png Binary files differdeleted file mode 100644 index c0f3241..0000000 --- a/www/inc/styles/dark/minus.png +++ /dev/null diff --git a/www/inc/styles/dark/plus-inactive.png b/www/inc/styles/dark/plus-inactive.png Binary files differdeleted file mode 100644 index 57a6186..0000000 --- a/www/inc/styles/dark/plus-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/plus.png b/www/inc/styles/dark/plus.png Binary files differdeleted file mode 100644 index 10332ae..0000000 --- a/www/inc/styles/dark/plus.png +++ /dev/null diff --git a/www/inc/styles/dark/restricted-inactive.png b/www/inc/styles/dark/restricted-inactive.png Binary files differdeleted file mode 100644 index b572e84..0000000 --- a/www/inc/styles/dark/restricted-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/restricted.png b/www/inc/styles/dark/restricted.png Binary files differdeleted file mode 100644 index 99bd4d5..0000000 --- a/www/inc/styles/dark/restricted.png +++ /dev/null diff --git a/www/inc/styles/dark/right-16.png b/www/inc/styles/dark/right-16.png Binary files differdeleted file mode 100644 index 42e783f..0000000 --- a/www/inc/styles/dark/right-16.png +++ /dev/null diff --git a/www/inc/styles/dark/right-inactive.png b/www/inc/styles/dark/right-inactive.png Binary files differdeleted file mode 100644 index ceb394f..0000000 --- a/www/inc/styles/dark/right-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/right.png b/www/inc/styles/dark/right.png Binary files differdeleted file mode 100644 index a656dc3..0000000 --- a/www/inc/styles/dark/right.png +++ /dev/null diff --git a/www/inc/styles/dark/title.png b/www/inc/styles/dark/title.png Binary files differdeleted file mode 100644 index 45286e0..0000000 --- a/www/inc/styles/dark/title.png +++ /dev/null diff --git a/www/inc/styles/dark/zip-inactive.png b/www/inc/styles/dark/zip-inactive.png Binary files differdeleted file mode 100644 index 547dceb..0000000 --- a/www/inc/styles/dark/zip-inactive.png +++ /dev/null diff --git a/www/inc/styles/dark/zip.png b/www/inc/styles/dark/zip.png Binary files differdeleted file mode 100644 index 1c3bda1..0000000 --- a/www/inc/styles/dark/zip.png +++ /dev/null diff --git a/www/inc/styles/default/CVS/Entries b/www/inc/styles/default/CVS/Entries deleted file mode 100644 index 9eaa230..0000000 --- a/www/inc/styles/default/CVS/Entries +++ /dev/null @@ -1,12 +0,0 @@ -/bcg.png/1.1/Tue Oct 21 06:45:11 2003/-kb/ -/default.css/1.1/Wed Oct 29 00:47:30 2003// -/left-16.png/1.1/Tue Apr 8 13:23:53 2003/-kb/ -/left.png/1.1/Wed Apr 23 11:03:22 2003/-kb/ -/logo-mini.png/1.1/Tue Oct 21 06:45:11 2003/-kb/ -/minus.png/1.1/Thu Mar 28 19:34:49 2002/-kb/ -/plus.png/1.1/Thu Mar 28 19:34:49 2002/-kb/ -/right-16.png/1.1/Tue Apr 8 13:24:17 2003/-kb/ -/right.png/1.1/Wed Apr 23 11:04:26 2003/-kb/ -/title.png/1.1/Tue Oct 28 21:54:11 2003/-kb/ -/zip.png/1.1/Fri May 23 12:44:44 2003/-kb/ -D diff --git a/www/inc/styles/default/CVS/Repository b/www/inc/styles/default/CVS/Repository deleted file mode 100644 index ec15a90..0000000 --- a/www/inc/styles/default/CVS/Repository +++ /dev/null @@ -1 +0,0 @@ -original/www/inc/styles/default diff --git a/www/inc/styles/default/CVS/Root b/www/inc/styles/default/CVS/Root deleted file mode 100644 index 16bd216..0000000 --- a/www/inc/styles/default/CVS/Root +++ /dev/null @@ -1 +0,0 @@ -:ext:jimmac@cvs.tuxfamily.org:/cvsroot/original diff --git a/www/inc/styles/default/bcg.png b/www/inc/styles/default/bcg.png Binary files differdeleted file mode 100644 index d4f7ac8..0000000 --- a/www/inc/styles/default/bcg.png +++ /dev/null diff --git a/www/inc/styles/default/default.css b/www/inc/styles/default/default.css deleted file mode 100644 index 482267d..0000000 --- a/www/inc/styles/default/default.css +++ /dev/null @@ -1,285 +0,0 @@ -/* Default stylesheet - ================== - - stylesheet & artwork - (c) 2003 Jakub 'jimmac' Steiner - -*/ - -body { - background-color: #f6f6f6; - background: url("bcg.png") top left repeat; - /* - margin: 0px 50px 0px 50px; - width: auto; - */ - margin: auto; - width: 770px; - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; -} - -img { - border: 0px; -} - -a:link { - color: #909090; -} - -a:visited { - color: #808080; -} - -a:hover { - color: #f0f0f0; - background-color: #707070; -} - - -h1.title { - background-color: #a7a9a6; - font-size: 16pt; - color: #808080; - width: 100%; - margin-bottom: 0px; - padding: 5px; - -} - -.title a { - display: block; - position:relative; - width:100%; - height:48px; - margin:0; padding:0; -} - -.title a:hover { - border: 0px; - background-color: #a7a9a6; -} - -.title a span { - /* this overlays text below with an image */ - display: block; - position:absolute; left:0; top:0; z-index:1; - width:338px; height:48px; - margin:0; padding:0; - background-image: url("title.png"); - background-attachment: top left; - background-repeat: no-repeat; -} - -div.thumbroll { - margin: 10px 0px 4px 0px; - min-height: 29px; -} - -p.bigthumbnails { - text-align: center; -} - -p.bigthumbnails a { - padding: 0px; - margin: 0px; - border: 0px; - -} -/* -p.bigthumbnails a:link img { - border: 1px solid white; -} - -p.bigthumbnails a:hover img { - border: 1px solid #909090; - -} -*/ - -a#minus,a#plus { - display: block; - position: relative; - float: left; - width:24px; - height:24px; - margin:0px; padding:0px; -} - -a#minus { - background: url("minus.png") top left no-repeat; -} - -a#plus { - background: url("plus.png") top left no-repeat; -} - -a#zip { - /* display: block; */ - position: relative; - width:16px; - height:16px; - margin:0px; padding:0px; - font-size: 9px; -} - -a#zip span { - background: url("zip.png") top left no-repeat; - position:absolute; left:0; top:0; z-index:1; - width:16px; height:16px; -} - -div.navigation { - background-color: #f6f6f6; - width: 100%; - padding: 5px; - font-size: 10px; -} - -div.navigation a { - color: #a0a0a0; - font-weight: bold; -} - -div.footer { - font-size: 9px; - width: 100%; - margin-top: 40px; - padding: 5px 5px 20px 5px; - clear: both; - border-top: 1px dotted #909090; -} - -div.year { - font-size: 11pt; - float: left; - margin: 10px; -} - -div.month { - margin: 0px 0px 0px 2em; - padding: 2px; -} - -div.month h4 { - margin: 0px 0px 3px 0px; -} - -/* ul won't work on safari with float: left */ -div.month p { - margin: 2px; - padding: 0px 0px 0px 6px; - list-style: none; - font-size: 10px; -} - -div#image { - /* width: 800px; */ - display: block; - position: relative; - clear: both; - margin-left: auto; - margin-right: auto; - /* border: 1px solid black; */ - min-height: 480px; /* only works in gecko :/ */ -} - -img#preview { - position: relative; - float: left; - margin-right: 8px; -} - -div.comment { - margin: 2em 0px; - color: #808080; - font-size: 9px; -} - -div.comment span { - color: black; - font-weight: bold; - font-size: 10px; -} - -div.navbuttons { - position: absolute; - top: 580px; left: 50%; - margin-left: 260px; /* 260px to the right of the center of the page */ - width: 64px; height: 32px; - z-index: 1; -} - -div.navbuttonsshell { - position: relative; - width: 100%; - margin: 2px; -} - -div.navbuttonsshell a#previcon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px; padding: 0; - top: 0px; - left: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the oveflow text */ - background: url("left.png") top left no-repeat; /* have a pixmap */ -} - -div.navbuttonsshell a#nexticon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px 4px 2px auto; padding: 0; - right: 4px; top: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the overflow text */ - background: url("right.png") top left no-repeat; /* have a pixmap */ -} - - -div.prevthumb,div.nextthumb { - margin-bottom: 1em; -} - -div.nextthumb a,div.prevthumb a { - text-decoration: none; -} - -div#mqhq { - margin: 2px 2px 4px 0px; - height: 32px; -} - -div#mqhq a { - display: block; - border: 1px solid #909090; - padding: 2px; - font-size: 10px; - background-color: #f6f6f6; - color: black; - float: left; - width: 48px; - text-align: center; - margin: 2px; - -moz-border-radius: 2px; -} - -div#mqhq a:hover { - background-color: #909090; - border: 1px solid black; - color: white; -} - -div.stylenavbar { - position:relative; - font-size: 9px; - margin: 4px 0px; - padding-bottom: 0px; -} diff --git a/www/inc/styles/default/home-inactive.png b/www/inc/styles/default/home-inactive.png Binary files differdeleted file mode 100644 index 1d756bd..0000000 --- a/www/inc/styles/default/home-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/home.png b/www/inc/styles/default/home.png Binary files differdeleted file mode 100644 index 46fce7c..0000000 --- a/www/inc/styles/default/home.png +++ /dev/null diff --git a/www/inc/styles/default/left-16.png b/www/inc/styles/default/left-16.png Binary files differdeleted file mode 100644 index 625a1ab..0000000 --- a/www/inc/styles/default/left-16.png +++ /dev/null diff --git a/www/inc/styles/default/left-inactive.png b/www/inc/styles/default/left-inactive.png Binary files differdeleted file mode 100644 index 38f572d..0000000 --- a/www/inc/styles/default/left-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/left.png b/www/inc/styles/default/left.png Binary files differdeleted file mode 100644 index bd5607c..0000000 --- a/www/inc/styles/default/left.png +++ /dev/null diff --git a/www/inc/styles/default/logo-mini.png b/www/inc/styles/default/logo-mini.png Binary files differdeleted file mode 100644 index 8949154..0000000 --- a/www/inc/styles/default/logo-mini.png +++ /dev/null diff --git a/www/inc/styles/default/minus-inactive.png b/www/inc/styles/default/minus-inactive.png Binary files differdeleted file mode 100644 index e29159f..0000000 --- a/www/inc/styles/default/minus-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/minus.png b/www/inc/styles/default/minus.png Binary files differdeleted file mode 100644 index 19eaef3..0000000 --- a/www/inc/styles/default/minus.png +++ /dev/null diff --git a/www/inc/styles/default/plus-inactive.png b/www/inc/styles/default/plus-inactive.png Binary files differdeleted file mode 100644 index 57a6186..0000000 --- a/www/inc/styles/default/plus-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/plus.png b/www/inc/styles/default/plus.png Binary files differdeleted file mode 100644 index 062d005..0000000 --- a/www/inc/styles/default/plus.png +++ /dev/null diff --git a/www/inc/styles/default/restricted-inactive.png b/www/inc/styles/default/restricted-inactive.png Binary files differdeleted file mode 100644 index ccd0268..0000000 --- a/www/inc/styles/default/restricted-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/restricted.png b/www/inc/styles/default/restricted.png Binary files differdeleted file mode 100644 index 23ad5b5..0000000 --- a/www/inc/styles/default/restricted.png +++ /dev/null diff --git a/www/inc/styles/default/right-16.png b/www/inc/styles/default/right-16.png Binary files differdeleted file mode 100644 index 42e783f..0000000 --- a/www/inc/styles/default/right-16.png +++ /dev/null diff --git a/www/inc/styles/default/right-inactive.png b/www/inc/styles/default/right-inactive.png Binary files differdeleted file mode 100644 index ceb394f..0000000 --- a/www/inc/styles/default/right-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/right.png b/www/inc/styles/default/right.png Binary files differdeleted file mode 100644 index bc5bcc5..0000000 --- a/www/inc/styles/default/right.png +++ /dev/null diff --git a/www/inc/styles/default/title.png b/www/inc/styles/default/title.png Binary files differdeleted file mode 100644 index 8a6ad6b..0000000 --- a/www/inc/styles/default/title.png +++ /dev/null diff --git a/www/inc/styles/default/zip-inactive.png b/www/inc/styles/default/zip-inactive.png Binary files differdeleted file mode 100644 index 547dceb..0000000 --- a/www/inc/styles/default/zip-inactive.png +++ /dev/null diff --git a/www/inc/styles/default/zip.png b/www/inc/styles/default/zip.png Binary files differdeleted file mode 100644 index 0bc44ab..0000000 --- a/www/inc/styles/default/zip.png +++ /dev/null diff --git a/www/inc/styles/gorilla/CVS/Entries b/www/inc/styles/gorilla/CVS/Entries deleted file mode 100644 index ad515e3..0000000 --- a/www/inc/styles/gorilla/CVS/Entries +++ /dev/null @@ -1,7 +0,0 @@ -/minus.png/1.1/Tue Oct 21 06:45:11 2003/-kb/ -/plus.png/1.1/Tue Oct 21 06:45:11 2003/-kb/ -/title.png/1.1/Mon Oct 27 11:01:36 2003/-kb/ -/gorilla.css/1.4/Wed Oct 29 00:23:08 2003// -/left.png/1.1/Tue Oct 21 06:45:11 2003/-kb/ -/right.png/1.1/Tue Oct 21 06:45:11 2003/-kb/ -D diff --git a/www/inc/styles/gorilla/CVS/Repository b/www/inc/styles/gorilla/CVS/Repository deleted file mode 100644 index 887b74e..0000000 --- a/www/inc/styles/gorilla/CVS/Repository +++ /dev/null @@ -1 +0,0 @@ -original/www/inc/styles/gorilla diff --git a/www/inc/styles/gorilla/CVS/Root b/www/inc/styles/gorilla/CVS/Root deleted file mode 100644 index 16bd216..0000000 --- a/www/inc/styles/gorilla/CVS/Root +++ /dev/null @@ -1 +0,0 @@ -:ext:jimmac@cvs.tuxfamily.org:/cvsroot/original diff --git a/www/inc/styles/gorilla/gorilla.css b/www/inc/styles/gorilla/gorilla.css deleted file mode 100644 index 9b23168..0000000 --- a/www/inc/styles/gorilla/gorilla.css +++ /dev/null @@ -1,258 +0,0 @@ -/* Gorilla stylesheet - ================== - - stylesheet & artwork - (c) 2003 Jakub 'jimmac' Steiner - - bugs/TODO: - - * navbuttons overlap minithubroll if there's many images -*/ - -body { - background-color: #dedfce; - margin: 0px 50px 0px 50px; - width: auto; - /* - margin: auto; - width: 780px; - */ - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; -} - -img { - border: 0px; -} - -a { -} - -a:hover { -} - -h1.title { - background-color: black; - font-size: 16pt; - color: #808080; - width: 100%; - margin-bottom: 0px; - padding: 5px; - -} - -.title a { - display: block; - position:relative; - width:100%; - height:48px; - margin:0; padding:0; -} - -.title a span { - /* this overlays text below with an image */ - display: block; - position:absolute; left:0; top:0; z-index:1; - width:400px; height:48px; - margin:0; padding:0; - background-image: url("title.png"); - background-attachment: top left; - background-repeat: no-repeat; -} - -div.thumbroll { - position: relative; - margin: 10px 0px 4px 0px; - min-height: 28px; -} - -a#minus,a#plus { - display: block; - position: relative; - float: left; - width:24px; - height:24px; - margin:0px; padding:0px; -} - -a#minus { - background: url("minus.png") top left no-repeat; -} - -a#plus { - background: url("plus.png") top left no-repeat; -} - -.navigation { - background-color: #505050; - width: 100%; - padding: 5px; - font-size: 10px; - clear: both; -} - -.navigation a { - color: #a0a0a0; - font-weight: bold; -} - -div.footer { - font-size: 9px; - background-color: #d9dac9; - width: 100%; - margin-top: 2em; - padding: 5px 5px 20px 5px; - clear: both; -} - -div.year { - font-size: 11pt; - float: left; - margin: 10px; -} - -div.month { - margin: 0px 0px 0px 2em; - padding: 2px; -} - -div.month h4 { - margin: 0px 0px 3px 0px; -} - -/* ul won't work on safari with float: left */ -div.month p { - margin: 2px; - padding: 0px 0px 0px 6px; - list-style: none; - font-size: 10px; -} - -div#image { - position: relative; - display: block; - clear: both; - margin-left: auto; - margin-right: auto; - /* border: 1px solid black; */ - min-height: 480px; /* only works in gecko :/ */ - height: 500px; -} - -img#preview { - position: absolute; - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - margin-left: auto; - margin-right: auto; - /* margin-left: -320px; later fixed by javascript; what a kludge this was */ -} - -div.comment { - margin: 2em 0px; - color: #808080; - font-size: 9px; -} - -div.comment span { - color: black; - font-weight: bold; - font-size: 10px; -} - -div.prevthumb,div.nextthumb { - position: absolute; - margin-bottom: 1em; - width: 120px; - height: 140px; -} - -div.prevthub { - top: 0px; - left: 0px; - text-align: right; -} - -div.nextthumb { - margin-left: auto; - right: 0px; - top: 0px; -} - -div.nextthumb a,div.prevthumb a { - text-decoration: none; -} - -div#mqhq a { - display: block; - border: 2px solid black; - padding: 2px; - font-size: 10px; - font-weight: bold; - background-color: #d1940c; - color: black; - float: left; - width: 48px; - text-align: center; - margin: 2px; - -} - -div.navbuttons { - position: absolute; - top: 140px; left: 50%; - margin-left: -50px; - width: 64px; height: 32px; - z-index: 1; -} - -div.navbuttonsshell { - position: relative; - width: 100%; - margin: 2px; -} - -div.navbuttonsshell a#previcon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px; padding: 0; - top: 0px; - left: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the oveflow text */ - background: url("left.png") top left no-repeat; /* have a pixmap */ -} - -div.navbuttonsshell a#nexticon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px 4px 2px auto; padding: 0; - right: 4px; top: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the overflow text */ - background: url("right.png") top left no-repeat; /* have a pixmap */ -} -div#mqhq { - margin: 2px 2px 4px 0px; - height: 32px; -} - -div.stylenavbar { - position:relative; - /* - left: 0px; - right: auto; - top:auto; - bottom:0px; - */ - margin: 2px; - font-size: 9px; -} diff --git a/www/inc/styles/gorilla/left.png b/www/inc/styles/gorilla/left.png Binary files differdeleted file mode 100644 index 63d306c..0000000 --- a/www/inc/styles/gorilla/left.png +++ /dev/null diff --git a/www/inc/styles/gorilla/minus.png b/www/inc/styles/gorilla/minus.png Binary files differdeleted file mode 100644 index bc7a830..0000000 --- a/www/inc/styles/gorilla/minus.png +++ /dev/null diff --git a/www/inc/styles/gorilla/plus.png b/www/inc/styles/gorilla/plus.png Binary files differdeleted file mode 100644 index 6b103cd..0000000 --- a/www/inc/styles/gorilla/plus.png +++ /dev/null diff --git a/www/inc/styles/gorilla/right.png b/www/inc/styles/gorilla/right.png Binary files differdeleted file mode 100644 index f998098..0000000 --- a/www/inc/styles/gorilla/right.png +++ /dev/null diff --git a/www/inc/styles/gorilla/title.png b/www/inc/styles/gorilla/title.png Binary files differdeleted file mode 100644 index 275528f..0000000 --- a/www/inc/styles/gorilla/title.png +++ /dev/null diff --git a/www/inc/styles/grey/grey.css b/www/inc/styles/grey/grey.css deleted file mode 100644 index 9b23168..0000000 --- a/www/inc/styles/grey/grey.css +++ /dev/null @@ -1,258 +0,0 @@ -/* Gorilla stylesheet - ================== - - stylesheet & artwork - (c) 2003 Jakub 'jimmac' Steiner - - bugs/TODO: - - * navbuttons overlap minithubroll if there's many images -*/ - -body { - background-color: #dedfce; - margin: 0px 50px 0px 50px; - width: auto; - /* - margin: auto; - width: 780px; - */ - font-family: "Bitstream Vera Sans", sans-serif; - font-size: 10pt; -} - -img { - border: 0px; -} - -a { -} - -a:hover { -} - -h1.title { - background-color: black; - font-size: 16pt; - color: #808080; - width: 100%; - margin-bottom: 0px; - padding: 5px; - -} - -.title a { - display: block; - position:relative; - width:100%; - height:48px; - margin:0; padding:0; -} - -.title a span { - /* this overlays text below with an image */ - display: block; - position:absolute; left:0; top:0; z-index:1; - width:400px; height:48px; - margin:0; padding:0; - background-image: url("title.png"); - background-attachment: top left; - background-repeat: no-repeat; -} - -div.thumbroll { - position: relative; - margin: 10px 0px 4px 0px; - min-height: 28px; -} - -a#minus,a#plus { - display: block; - position: relative; - float: left; - width:24px; - height:24px; - margin:0px; padding:0px; -} - -a#minus { - background: url("minus.png") top left no-repeat; -} - -a#plus { - background: url("plus.png") top left no-repeat; -} - -.navigation { - background-color: #505050; - width: 100%; - padding: 5px; - font-size: 10px; - clear: both; -} - -.navigation a { - color: #a0a0a0; - font-weight: bold; -} - -div.footer { - font-size: 9px; - background-color: #d9dac9; - width: 100%; - margin-top: 2em; - padding: 5px 5px 20px 5px; - clear: both; -} - -div.year { - font-size: 11pt; - float: left; - margin: 10px; -} - -div.month { - margin: 0px 0px 0px 2em; - padding: 2px; -} - -div.month h4 { - margin: 0px 0px 3px 0px; -} - -/* ul won't work on safari with float: left */ -div.month p { - margin: 2px; - padding: 0px 0px 0px 6px; - list-style: none; - font-size: 10px; -} - -div#image { - position: relative; - display: block; - clear: both; - margin-left: auto; - margin-right: auto; - /* border: 1px solid black; */ - min-height: 480px; /* only works in gecko :/ */ - height: 500px; -} - -img#preview { - position: absolute; - top: 0px; - right: 0px; - bottom: 0px; - left: 0px; - margin-left: auto; - margin-right: auto; - /* margin-left: -320px; later fixed by javascript; what a kludge this was */ -} - -div.comment { - margin: 2em 0px; - color: #808080; - font-size: 9px; -} - -div.comment span { - color: black; - font-weight: bold; - font-size: 10px; -} - -div.prevthumb,div.nextthumb { - position: absolute; - margin-bottom: 1em; - width: 120px; - height: 140px; -} - -div.prevthub { - top: 0px; - left: 0px; - text-align: right; -} - -div.nextthumb { - margin-left: auto; - right: 0px; - top: 0px; -} - -div.nextthumb a,div.prevthumb a { - text-decoration: none; -} - -div#mqhq a { - display: block; - border: 2px solid black; - padding: 2px; - font-size: 10px; - font-weight: bold; - background-color: #d1940c; - color: black; - float: left; - width: 48px; - text-align: center; - margin: 2px; - -} - -div.navbuttons { - position: absolute; - top: 140px; left: 50%; - margin-left: -50px; - width: 64px; height: 32px; - z-index: 1; -} - -div.navbuttonsshell { - position: relative; - width: 100%; - margin: 2px; -} - -div.navbuttonsshell a#previcon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px; padding: 0; - top: 0px; - left: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the oveflow text */ - background: url("left.png") top left no-repeat; /* have a pixmap */ -} - -div.navbuttonsshell a#nexticon { - display: block; - position: absolute; - width: 24px; height: 24px; - margin: 2px 4px 2px auto; padding: 0; - right: 4px; top: 0px; - color: #f6f6f6; - font-size: 30px; /* make unreadable */ - text-indent: 2em; /* push it off screen, since khtml doesn't do 0px fonts */ - overflow: hidden; /* hide the overflow text */ - background: url("right.png") top left no-repeat; /* have a pixmap */ -} -div#mqhq { - margin: 2px 2px 4px 0px; - height: 32px; -} - -div.stylenavbar { - position:relative; - /* - left: 0px; - right: auto; - top:auto; - bottom:0px; - */ - margin: 2px; - font-size: 9px; -} diff --git a/www/inc/styles/grey/left.png b/www/inc/styles/grey/left.png Binary files differdeleted file mode 100644 index 63d306c..0000000 --- a/www/inc/styles/grey/left.png +++ /dev/null diff --git a/www/inc/styles/grey/minus.png b/www/inc/styles/grey/minus.png Binary files differdeleted file mode 100644 index bc7a830..0000000 --- a/www/inc/styles/grey/minus.png +++ /dev/null diff --git a/www/inc/styles/grey/plus.png b/www/inc/styles/grey/plus.png Binary files differdeleted file mode 100644 index 6b103cd..0000000 --- a/www/inc/styles/grey/plus.png +++ /dev/null diff --git a/www/inc/styles/grey/right.png b/www/inc/styles/grey/right.png Binary files differdeleted file mode 100644 index f998098..0000000 --- a/www/inc/styles/grey/right.png +++ /dev/null diff --git a/www/inc/styles/grey/title.png b/www/inc/styles/grey/title.png Binary files differdeleted file mode 100644 index 275528f..0000000 --- a/www/inc/styles/grey/title.png +++ /dev/null diff --git a/www/inc/styles/ie/ie.css b/www/inc/styles/ie/ie.css deleted file mode 100644 index 36cd2c4..0000000 --- a/www/inc/styles/ie/ie.css +++ /dev/null @@ -1,8 +0,0 @@ -/* IE sucks; this is the only stylesheet doesn't crash it - this is low priority for me; if you want a nice stylesheet for IE - (if such thing can be written), please send a patch to jimmac@ximian.com -*/ - -body { - font-family: Verdana, Sans-Serif; -} diff --git a/www/inc/styles/ie7/README.txt b/www/inc/styles/ie7/README.txt deleted file mode 100644 index 63aaa70..0000000 --- a/www/inc/styles/ie7/README.txt +++ /dev/null @@ -1,28 +0,0 @@ -Installation ------------- - -Follow these simple instructions to get IE7 working immediately on your server: - - * download the latest IE7 ZIP file (https://sourceforge.net/project/showfiles.php?group_id=109983&package_id=119707) - - * extract the contents to a directory on your server (keep the folder names used in the ZIP) - - * you will now have an IE7 directory on your server - - * include the IE7 JavaScript library in the page you wish to test - - <!-- compliance patch for microsoft browsers --> - <!--[if lt IE 7]><script src="/ie7/ie7-standard-p.js" type="text/javascript"></script><![endif]--> - - * make sure this also points to the same directory - - * open the page in your web browser - - * the page should now be IE7 enabled. - -You may extract the contents of the ZIP file to your hard disk if you do not have access to a web server. - - -Enjoy ;-) - -Dean Edwards, 17th August 2004 diff --git a/www/inc/styles/ie7/blank.gif b/www/inc/styles/ie7/blank.gif Binary files differdeleted file mode 100644 index a4fe2e6..0000000 --- a/www/inc/styles/ie7/blank.gif +++ /dev/null diff --git a/www/inc/styles/ie7/ie7-box-model.js b/www/inc/styles/ie7/ie7-box-model.js deleted file mode 100644 index 0ae71bb..0000000 --- a/www/inc/styles/ie7/ie7-box-model.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-box-model",function(){var NUMERIC="\x5cs*:\x5cs*\x5cd[\x5cw%]*",UNIT=/^\d\w*$/,PERCENT=/^\d+%$/,PIXEL=/^\d+(px)?$/;var MATCH=(appVersion<6)?/\b(min|max)-(width|height)\s*:\s*\d/gi:/\b(min|max)-width\s*:\s*\d/gi;var AUTO=(appVersion<5.5)?/^auto|0cm$/:/^auto$/;var ie7_tmp=tmpElement();push(IE7.recalcs,function removeTempElement(){if(ie7_tmp.parentElement)ie7_tmp.parentElement.removeChild(ie7_tmp)});CSSFixes.addFix(MATCH,function(match){return match.slice(0,3)+match.charAt(4).toUpperCase()+match.slice(5)});var viewport=(quirksMode)?document.body:documentElement;function isFixed(element){return element.style.position=="fixed"||element.currentStyle.position=="fixed"};function layoutParent(element){var layoutParent=element.offsetParent;while(layoutParent&&!hasLayout(layoutParent))layoutParent=layoutParent.offsetParent;if(!layoutParent||isFixed(element))layoutParent=viewport;return layoutParent};function fixWidth(HEIGHT){fixWidth=function(element,value){if(!element.runtimeStyle.fixedWidth&&(!isHTML||element.tagName!="HR")){if(!value)value=element.currentStyle.width;element.runtimeStyle.fixedWidth=(UNIT.test(value))?Math.max(0,getFixedWidth(element,value)):value;element.runtimeStyle.width=element.runtimeStyle.fixedWidth;boxSizing(element)}};if(quirksMode)CSSFixes.addRecalc("width\x5cs*:\x5cs*\x5cd\x5cw*[^%]",fixWidth);var getFixedWidth=(quirksMode)?function(element,value){return getPixelWidth(element,value)+getBorderWidth(element)+getPaddingWidth(element)}:function(element,value){return getPixelWidth(element,value)};function getBorderWidth(element){return element.offsetWidth-element.clientWidth};function getPaddingWidth(element){return getPixelWidth(element,element.currentStyle.paddingLeft)+getPixelWidth(element,element.currentStyle.paddingRight)};function getMarginWidth(element){return((element.currentStyle.marginLeft=="auto")?0:getPixelLeft(element,element.currentStyle.marginLeft))+((element.currentStyle.marginRight=="auto")?0:getPixelLeft(element,element.currentStyle.marginRight))};function minWidth(element){minWidth[minWidth.count++]=element;if(element.currentStyle.minHeight=="auto")element.runtimeStyle.minHeight=0;fixWidth(element);boxSizing(element);resizeWidth(element)};minWidth.count=0;CSSFixes.addRecalc("min-width"+NUMERIC,minWidth);eval(String(minWidth).replace(/min/g,"max"));maxWidth.count=0;CSSFixes.addRecalc("max-width"+NUMERIC,maxWidth);function resizeWidth(element){var rect=element.getBoundingClientRect();var width=rect.right-rect.left;if(element.currentStyle.maxWidth&&width>=getFixedWidth(element,element.currentStyle.maxWidth))element.runtimeStyle.width=getFixedWidth(element,element.currentStyle.maxWidth);else if(element.currentStyle.minWidth&&width<=getFixedWidth(element,element.currentStyle.minWidth))element.runtimeStyle.width=getFixedWidth(element,element.currentStyle.minWidth);else element.runtimeStyle.width=element.runtimeStyle.fixedWidth};function fixRight(element){if((element.currentStyle.position=="absolute"||element.currentStyle.position=="fixed")&&element.currentStyle.left!="auto"&&element.currentStyle.right!="auto"&&AUTO.test(element.currentStyle.width)){fixRight[fixRight.count++]=element;boxSizing(element);resizeRight(element)}};fixRight.count=0;CSSFixes.addRecalc("right"+NUMERIC,fixRight);function resizeRight(element){element.runtimeStyle.width="";var parentElement=layoutParent(element);var left=(element.runtimeStyle.screenLeft)?element.getBoundingClientRect().left-2:getPixelLeft(element,element.currentStyle.left);var width=parentElement.clientWidth-getPixelLeft(element,element.currentStyle.right)-left-getMarginWidth(element);if(!quirksMode)width-=getBorderWidth(element)+getPaddingWidth(element);if(width<0)width=0;if(isFixed(element)||HEIGHT||element.offsetWidth<width){element.runtimeStyle.fixedWidth=width;element.runtimeStyle.width=width}};var clientWidth=documentElement.clientWidth;addEventHandler(window,"onresize",function(){var i,wider=(clientWidth<documentElement.clientWidth);clientWidth=documentElement.clientWidth;for(i=0;i<minWidth.count;i++){var element=minWidth[i];var fixedWidth=(element.runtimeStyle.width==element.currentStyle.minWidth);if(wider&&fixedWidth)element.runtimeStyle.width="";if(wider==fixedWidth)resizeWidth(element)}for(i=0;i<maxWidth.count;i++){var element=maxWidth[i];var fixedWidth=(element.runtimeStyle.width==element.currentStyle.maxWidth);if(!wider&&fixedWidth)element.runtimeStyle.width="";if(wider!=fixedWidth)resizeWidth(element)}for(i=0;i<fixRight.count;i++)resizeRight(fixRight[i]);removeTempElement()});function getPixelWidth(element,value){if(PIXEL.test(value))return parseInt(value);if(PERCENT.test(value))return parseInt(parseFloat(value)/100*layoutParent(element).clientWidth);var parentElement=(element.canHaveChildren)?element:element.parentElement;parentElement.appendChild(ie7_tmp);ie7_tmp.style.width=value;return ie7_tmp.offsetWidth};function getPixelLeft(element,value){if(parseInt(value)>0)return getPixelWidth(element,value);if(PIXEL.test(value))return parseInt(value);element.parentElement.appendChild(ie7_tmp);ie7_tmp.style.left=value;return ie7_tmp.offsetLeft}};eval(String(fixWidth).replace(/Width/g,"Height").replace(/width/g,"height").replace(/Left/g,"Top").replace(/left/g,"top").replace(/Right/g,"Bottom").replace(/right/g,"bottom"));fixWidth();fixHeight(true)});
diff --git a/www/inc/styles/ie7/ie7-core.js b/www/inc/styles/ie7/ie7-core.js deleted file mode 100644 index 91cf79a..0000000 --- a/www/inc/styles/ie7/ie7-core.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(!window.IE7)new function(){try{window.IE7=this;var DUMMY=this.addModule=new Function;function unHide(){if(document.body)document.body.style.visibility="visible"};this.toString=function(){return "IE7 version 0.7.3 (alpha)"};var alert=(/ie7_debug/.test(location.search))?function(message){window.alert(IE7+"\n\n"+message)}:DUMMY;var appVersion=navigator.appVersion.match(/MSIE (\d\.\d)/)[1];if(/ie7_off/.test(location.search)||appVersion<5||!/^ms_/.test(document.documentElement.uniqueID))return unHide();var quirksMode=Boolean(document.compatMode!="CSS1Compat");var isHTML=(typeof document.mimeType=="unknown")?!/\.xml$/i.test(location.pathname):Boolean(document.mimeType!="XML Document");var LINKS=":link{ie7-link:link}:visited{ie7-link:visited}";var HEADER=LINKS;if(!isHTML)HEADER+="*{margin:0}";var HTMLFixes;var documentElement=document.documentElement;var modules={};this.addModule=function(name,script,autoload){if(!modules)return;if(loaded)eval("script="+String(script));if(autoload){script();script=DUMMY}modules[name]=script};var RELATIVE=/^[\w\.]+[^:]*$/;function makePath(href,path){if(RELATIVE.test(href))href=(path||"")+href;return href};function getPath(href,path){href=makePath(href,path);return href.slice(0,href.lastIndexOf("/")+1)};var path=getPath(document.scripts[document.scripts.length-1].src);var httpRequest=new ActiveXObject("Microsoft.XMLHTTP");function load(href,path){try{href=makePath(href,path);httpRequest.open("GET",href,false);httpRequest.send();return httpRequest.responseText}catch(ignore){alert("Error [1]: could not load file "+href);return ""}};var push=function(array,item){return array.push(item)};var pop=function(array){return array.pop()};if(appVersion<5.5)eval(load("ie7-ie5.js",path));if(document.readyState=="complete"||!isHTML)document.createStyleSheet();else document.write("<style></style>");this.styleSheet=document.styleSheets[document.styleSheets.length-1];this.styleSheet.cssText=LINKS;this.styleSheet.ie7=true;var cssText={};function loadStyleSheet(styleSheet,path){var url=makePath(styleSheet.href,path);if(cssText[url])return "";cssText[url]=(styleSheet.disabled)?"":fixUrls(getCSSText(styleSheet,path),getPath(styleSheet.href,path));return cssText[url]};var getCSSText=function(styleSheet){return styleSheet.cssText};var URL=/(url\(['"]?)([\w\.]+[^:\)]*['"]?\))/gi;function fixUrls(cssText,pathname){return cssText.replace(URL,"$1"+pathname.slice(0,pathname.lastIndexOf("/")+1)+"$2")};this.recalcs=[];this.parse=DUMMY;var complete=false;function _load(){try{complete=true;var MEDIA=/\bscreen\b|\ball\b|^$/i;var styleSheets=document.styleSheets;var inlineStyles=[];var styles=document.getElementsByTagName("style");for(var i=styles.length-1;i>=0;i--){push(inlineStyles,/ie7-link/.test(styles[i].innerHTML)?"":styles[i].innerHTML)}function getCSSText(styleSheet,path){var cssText="";if(MEDIA.test(styleSheet.media)){for(var i=0;i<styleSheet.imports.length;i++){cssText+=arguments.callee(styleSheet.imports[i],getPath(styleSheet.href,path))}cssText+=((styleSheet.href)?loadStyleSheet(styleSheet,path):pop(inlineStyles))}return cssText};IE7.cssText="";for(i=0;i<styleSheets.length;i++)IE7.cssText+=getCSSText(styleSheets[i],"");IE7.cssText=encode(IE7.cssText);for(i in modules)modules[i]();delete modules;if(HTMLFixes)HTMLFixes.apply();CSSFixes.apply();IE7.parse();IE7.styleSheet.cssText=HEADER+decode(IE7.cssText);for(i=0;i<styleSheets.length;i++){if(!styleSheets[i].disabled&&!styleSheets[i].ie7)styleSheets[i].cssText=""}IE7.recalc();alert("loaded successfully")}catch(error){alert("Error [2]: "+error.description)}finally{unHide()}};this.recalc=function(){CSSFixes.recalc();for(var i=0;i<this.recalcs.length;i++)this.recalcs[i]()};var CSSFixes=new function(){var fixes=[];this.addFix=function(){push(fixes,arguments)};var recalcs=[];this.addRecalc=function(pattern,fix){var reg=new RegExp("([^{}]*)\x5c{([^}]*[^\x5cw-])?"+pattern,"gi");var cssText=IE7.cssText;pattern=[];while(match=reg.exec(cssText)){push(pattern,match[1]);if(appVersion<5.5)cssText=cssText.slice(match.lastIndex)}if(pattern.length){pattern=pattern.toString();push(recalcs,arguments)}};this.apply=function(){for(var i=0;i<fixes.length;i++){IE7.cssText=IE7.cssText.replace(fixes[i][0],fixes[i][1])}this.addRecalc("box-sizing\x5cs*:\x5cs*content-box",boxSizing);this.addRecalc("position\x5cs*:\x5cs*absolute",function(element){if(element.offsetParent.currentStyle.position=="relative")boxSizing(element.offsetParent)})};this.recalc=function(){for(var i=0;i<recalcs.length;i++){var elements=cssQuery(recalcs[i][0]);for(var j=0;j<elements.length;j++)recalcs[i][1](elements[j])}};this.addFix(/(float\s*:\s*(left|right))/gi,"display:inline;$1");if(appVersion<6)this.addFix(/display\s*:\s*list-item/gi,"display:block");if(quirksMode){var SIZES="xx-small,x-small,small,medium,large,x-large,xx-large".split(",");for(var i=0;i<SIZES.length;i++)SIZES[SIZES[i]]=SIZES[i-1]||"xx-small";function replace($,$1,$2,$3){return $1+SIZES[$3]};this.addFix(new RegExp("(font(-size)?\x5cs*:\x5cs*)("+SIZES.join("|")+")","gi"),replace)}};var STANDARD_SELECT=/^[^>\+~\s]/;var STREAM=/[\s>\+~:@#\.\(\)]|[^\s>\+~:@#\.\(\)]+/g;var NAMESPACE=/\|/;var IMPLIED_SELECTOR=/([\s>~\,]|[^(]\+|^)([\.:#@])/g;var ASTERISK="$1*$2";var cssCache={};function cssQuery(selector,from){var useCache=!from;var base=(from)?(from.constructor==Array)?from:[from]:[document];var selectors=selector.replace(IMPLIED_SELECTOR,ASTERISK).split(",");var match=[];for(var i=0;i<selectors.length;i++){selector=toStream(selectors[i]);if(selector.slice(0,3).join("")==" *#"){selector=selector.slice(2);from=selectById(base,selector[1])}else from=base;var j=0,token,filter,filterArgs,cacheSelector="";while(j<selector.length){token=selector[j++];filter=selector[j++];cacheSelector+=token+filter;filterArgs="";if(selector[j]=="("){while(selector[j++]!=")")filterArgs+=selector[j];filterArgs=filterArgs.slice(0,-1);cacheSelector+="("+filterArgs+")"}from=(useCache&&cssCache[cacheSelector])?cssCache[cacheSelector]:select(from,token,filter,filterArgs);if(useCache)cssCache[cacheSelector]=from}match=match.concat(from)}return match};function toStream(selector){if(STANDARD_SELECT.test(selector))selector=" "+selector;return selector.match(STREAM)};function select(from,token,filter,filterArgs){var scopeName="";if(NAMESPACE.test(filter)){filter=filter.split("|");scopeName=filter[0];filter=filter[1]}var filtered=[];if(selectors[token])selectors[token](filtered,from,filter,scopeName||filterArgs);return filtered};function selectById(from,id){var filtered=[],i,j;for(i=0;i<from.length;i++){var match=from[i].all.item(id);if(match){if(match.length==null)push(filtered,match);else for(j=0;j<match.length;j++)push(filtered,match[j])}}return filtered};var selectors={" ":function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var subset=(filter=="*"&&from[i].all)?from[i].all:from[i].getElementsByTagName(filter);for(var j=0;j<subset.length;j++){if(isElement(subset[j])&&(!scopeName||subset[j].scopeName==scopeName))push(filtered,subset[j])}}},"#":function(filtered,from,filter){for(var i=0;i<from.length;i++)if(from[i].id==filter)push(filtered,from[i])},".":function(filtered,from,filter){filter=new RegExp("(^|\x5cs)"+filter+"(\x5cs|$)");for(var i=0;i<from.length;i++)if(filter.test(from[i].className))push(filtered,from[i])},":":function(filtered,from,filter,filterArgs){filter=pseudoClasses[filter];if(filter)for(var i=0;i<from.length;i++)if(filter(from[i],filterArgs))push(filtered,from[i])}};var attributeTests="";var pseudoClasses={toString:function(){var toString=[];for(var pseudoClass in this){if(pseudoClass!="link"&&pseudoClass!="visited"){if(this[pseudoClass].length>1)pseudoClass+="\x5c([^)]*\x5c)";push(toString,pseudoClass)}}return toString.join("|")},"link":function(element){return Boolean(element.currentStyle["ie7-link"]=="link")},"visited":function(element){return Boolean(element.currentStyle["ie7-link"]=="visited")}};var dynamicPseudoClasses={toString:pseudoClasses.toString};function compareTagName(element,tagName,scopeName){if(scopeName&&element.scopeName!=scopeName)return false;return(tagName=="*")?isElement(element):(isHTML)?(element.tagName==tagName.toUpperCase()):(element.tagName==tagName)};var strings=[];function getString(string){return QUOTED.test(string)?strings[string.slice(1,-1)]:string};var encode=function(cssText){return cssText.replace(/(\x2f\*[^\*]*\*+([^\x2f][^\*]*\*+)*\x2f)|('[^']*')|("[^"]*")/g,function(match){return(match.charAt(0)=="/")?"":"'"+(push(strings,match.slice(1,-1))-1)+"'"}).replace(/@(namespace|import)[^;\n]+[;\n]|<!\-\-|\-\->/g,"").replace(/\x5c:/g,"|").replace(/^\s+|\s*([\{\}\+\,>~\s;])\s*|\s+$/g,"$1")};function decode(cssText){return cssText.replace(/\|/g,"\x5c:").replace(/'(\d+)'/g,function(match,key){return strings[key]})};var handlers=[];function addEventHandler(element,type,handler){element.attachEvent(type,handler);push(handlers,arguments)};function removeEventHandler(element,type,handler){try{element.detachEvent(type,handler)}catch(ignore){}};window.attachEvent("onbeforeunload",function(){while(handlers.length){var handler=pop(handlers);removeEventHandler(handler[0],handler[1],handler[2])}});var hasLayout=(appVersion<6)?function(element){return element.clientWidth}:function(element){return element.currentStyle.hasLayout};function boxSizing(element){if(!hasLayout(element)){element.contentEditable=false;fixMargins(firstChildElement(element))}};function fixMargins(element){while(element){element.runtimeStyle.marginTop=element.currentStyle.marginTop;element=nextElement(element)}};var QUOTED=/('[^']*')|("[^"]*")/;function quote(value){return(QUOTED.test(value))?value:"'"+value+"'"};function unquote(value){return(QUOTED.test(value))?value.slice(1,-1):value};function tmpElement(tagName){var element=document.createElement(tagName||"object");element.style.cssText="position:absolute;padding:0;display:block;border:none;clip:rect(0 0 0 0);left:-9999";return element};function isElement(node){return Boolean(node&&node.nodeType==1&&node.tagName!="!"&&!node.ie7_anon)};function previousElement(element){while(element&&(element=element.previousSibling)&&!isElement(element))continue;return element};function nextElement(element){while(element&&(element=element.nextSibling)&&!isElement(element))continue;return element};function firstChildElement(element){element=element.firstChild;return(isElement(element))?element:nextElement(element)};var loaded=true;if(document.readyState=="complete")_load();else addEventHandler(document,"onreadystatechange",function(){if(!complete&&document.readyState=="complete")setTimeout(_load,0)})}catch(error){unHide();alert("Error [0]: "+error.description)}finally{}}();
diff --git a/www/inc/styles/ie7/ie7-css-strict.js b/www/inc/styles/ie7/ie7-css-strict.js deleted file mode 100644 index 7ed03d2..0000000 --- a/www/inc/styles/ie7/ie7-css-strict.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-strict",function(){if(!modules["ie7-css2"])return;var NONE=[],ID=/#/g,CLASS=/[:@\.]/g,TAG=/^\w|[\s>+~]\w/g;IE7.parser.parse=function(cssText){var DYNAMIC=new RegExp("(.*):("+dynamicPseudoClasses+")(.*)");function addRule(selector,cssText){var match=selector.match(DYNAMIC);if(match)new DynamicRule(selector,match[1],match[2],match[3],cssText);else new Rule(selector,cssText)};cssText=cssText.replace(IE7.PseudoElement.ALL,IE7.PseudoElement.ID);var RULE=/([^\{]+)\{(\d+)\}/g,match;while(match=RULE.exec(cssText)){addRule(match[1],match[2]);if(appVersion<5.5)cssText=cssText.slice(match.lastIndex)}IE7.classes.sort(Rule.compare);return IE7.classes.join("\n")};function Rule(selector,cssText){this.cssText=cssText;this.specificity=Rule.score(selector);this.inherit=IE7.Class;this.inherit(selector)};Rule.prototype=new IE7.Class.ancestor;Rule.prototype.toString=function(){return "."+this.name+"{"+this.cssText+"}"};Rule.score=function(selector){return(selector.match(ID)||NONE).length*10000+(selector.match(CLASS)||NONE).length*100+(selector.match(TAG)||NONE).length};Rule.compare=function(rule1,rule2){return rule1.specificity-rule2.specificity};function DynamicRule(selector,attach,dynamicPseudoClass,target,cssText){this.cssText=cssText;this.specificity=Rule.score(selector);this.inherit=IE7.DynamicStyle;this.inherit(selector,attach,dynamicPseudoClass,target)};DynamicRule.prototype=new IE7.DynamicStyle.ancestor;DynamicRule.prototype.toString=Rule.prototype.toString});
diff --git a/www/inc/styles/ie7/ie7-css2.js b/www/inc/styles/ie7/ie7-css2.js deleted file mode 100644 index a9a03b7..0000000 --- a/www/inc/styles/ie7/ie7-css2.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-css2",function(){var CHILD=/>/g,ANCHOR=/(\ba(\.[\w-]+)?)$/i;IE7.classes=[];IE7.parser=new Parser;IE7.Class=Class;IE7.DynamicStyle=DynamicStyle;IE7.PseudoElement=PseudoElement;IE7.parse=function(){with(this.parser)this.cssText=decode(parse(encode(this.cssText)));for(var i=0;i<IE7.classes.length;i++)IE7.classes[i].exec();for(i=0;i<pseudoElements.length;i++)pseudoElements[i].create()};getCSSText=function(styleSheet,path){return load(styleSheet.href,path)};var encoded=[];function Parser(){this.parse=function(cssText){Class.ALL=new RegExp("[^},\x5cs]*([>+~][^:@,\x5cs{]+|:("+pseudoClasses+")|\x5c.[\x5cw-]+\x5c.[\x5cw-.]+|@[@\x5cd]+)","g");Class.COMPLEX=new RegExp("[^\x5cs(]+[+~]|@\x5cd+|:(link|visited|"+pseudoClasses+"|"+dynamicPseudoClasses+")|\x5c.[\x5cw-.]+","g");DynamicStyle.ALL=new RegExp("([^}]*):("+dynamicPseudoClasses+")([^{]*)","g");return cssText.replace(PseudoElement.ALL,PseudoElement.ID).replace(DynamicStyle.ALL,DynamicStyle.ID).replace(Class.ALL,Class.ID)};this.encode=function(cssText){AttributeSelector.ALL=new RegExp("\x5c[([^"+attributeTests+"=\x5c]]+)(["+attributeTests+"]?=?)([^\x5c]]+)?\x5c]","g");return cssText.replace(AttributeSelector.ALL,AttributeSelector.ID).replace(/\{[^\}]*\}/g,function($){return "{"+(push(encoded,$)-1)+"}"}).replace(/::/g,":").replace(/([^\}\s]*\,[^\{]*)(\{\d+\})/g,function(match,left,right){return left.split(",").join(right)+right})};this.decode=function(cssText){return cssText.replace(/\{(\d+)\}/g,function($,$1){return encoded[$1]})}};function _Class(){this.toString=function(){return "."+this.name};this.add=function(element){element.className+=" "+this.name};this.remove=function(element){element.className=element.className.replace(this.MATCH,"")};this.exec=function(){var match=cssQuery(this.selector);for(var i=0;i<match.length;i++)this.add(match[i])}};function Class(selector,cssText){this.id=IE7.classes.length;this.name=Class.PREFIX+this.id;this.selector=selector;this.MATCH=new RegExp("\x5cs"+this.name+"\x5cb","g");push(IE7.classes,this)};Class.ancestor=_Class;Class.prototype=new _Class;Class.PREFIX="ie7_";Class.ID=function(match){return simpleSelector(match)+new Class(match)};function _DynamicStyle(){this.exec=function(){var match=cssQuery(this.attach);for(var i=0;i<match.length;i++){var target=(this.target)?cssQuery(this.target,match[i]):[match[i]];if(target)this.dynamicPseudoClass(match[i],target,this)}}};_DynamicStyle.prototype=new _Class;function DynamicStyle(selector,attach,dynamicPseudoClass,target){this.attach=attach;this.dynamicPseudoClass=dynamicPseudoClasses[dynamicPseudoClass];this.target=target;this.inherit=Class;this.inherit(selector)};DynamicStyle.ancestor=_DynamicStyle;DynamicStyle.prototype=new _DynamicStyle;DynamicStyle.ID=function(match,attach,dynamicPseudoClass,target){if(isHTML&&dynamicPseudoClass!="focus"&&ANCHOR.test(attach)&&!/[+>~]/.test(target))return match;return simpleSelector(match)+new DynamicStyle(match,attach,dynamicPseudoClass,target)};HEADER+=".ie7_anon{vertical-align:top;display:inline}";var HEX=/\x5c([a-fA-F\d]+)/g;function unicode(match,code){return eval("'\x5cu"+"0000".slice(code.length)+code+"'")};var pseudoElements=[];function _PseudoElement(){this.content=null;this.toString=function(){return ""};this.specificity=0;function addTimer(object,content,cssText){var timer=setInterval(function(){try{if(!object.load)return;object.load(object,content,cssText);clearInterval(timer)}catch(ignore){clearInterval(timer)}},10)};this.create=function(){if(this.content==null)return;for(var i=0;i<this.match.length;i++){var target=this.match[i];var pseudoElement=target.runtimeStyle[this.position];if(pseudoElement){var parentElement=target.canHaveChildren?target:target.parentElement;var isURL=/^url\(.*\)$/.test(this.content);var element=document.createElement(isURL?PseudoElement.OBJECT:"!");element.ie7_anon=true;element.runtimeStyle.cssText=pseudoElement.cssText;if(!isURL)element.innerText=pseudoElement.content;if(this.position=="before"){parentElement.insertBefore(element,parentElement.firstChild)}else{parentElement.appendChild(element)}if(isURL)addTimer(element,pseudoElement.content,pseudoElement.cssText);target.runtimeStyle[this.position]=null}}};this.exec=function(){this.match=cssQuery(this.selector);for(var i=0;i<this.match.length;i++){var runtimeStyle=this.match[i].runtimeStyle;if(!runtimeStyle[this.position])runtimeStyle[this.position]={cssText:""};runtimeStyle[this.position].cssText+=";"+this.cssText;if(this.content!=null)runtimeStyle[this.position].content=this.content}}};_PseudoElement.prototype=new _Class;function PseudoElement(selector,position,cssText){this.position=position;this.cssText=encoded[cssText].slice(1,-1);var content=this.cssText.match(PseudoElement.CONTENT);if(content)this.content=getString(content[1]).replace(HEX,unicode);this.inherit=Class;this.inherit(selector);push(pseudoElements,this)};PseudoElement.ancestor=_PseudoElement;PseudoElement.prototype=new _PseudoElement;PseudoElement.ID=function(match,selector,position,cssText){return new PseudoElement(selector,position,cssText)};PseudoElement.ALL=/([^}]*):(before|after)[^{]*\{([^}]*)\}/g;PseudoElement.CONTENT=/content\s*:\s*([^;]*)(;|$)/;PseudoElement.OBJECT="<object class=ie7_anon data='"+makePath("ie7-content.htm",path)+"' width=100% height=0 type=text/x-scriptlet>";selectors[">"]=function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var subset=from[i].children;for(var j=0;j<subset.length;j++)if(compareTagName(subset[j],filter,scopeName))push(filtered,subset[j])}};selectors["+"]=function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var adjacent=nextElement(from[i]);if(adjacent&&compareTagName(adjacent,filter,scopeName))push(filtered,adjacent)}};selectors["@"]=function(filtered,from,filter){filter=attributeSelectors[filter];for(var i=0;i<from.length;i++)if(filter(from[i]))push(filtered,from[i])};pseudoClasses["first-child"]=function(element){return!previousElement(element)};pseudoClasses["lang"]=function(element,filterArgs){filterArgs=new RegExp("^"+filterArgs,"i");while(element&&!element.getAttribute("lang"))element=element.parentNode;return element&&filterArgs.test(element.getAttribute("lang"))};dynamicPseudoClasses.hover=function(element){var instance=arguments;addEventHandler(element,"onmouseover",function(){IE7.Event.hover.register(instance)});addEventHandler(element,"onmouseout",function(){IE7.Event.hover.unregister(instance)})};dynamicPseudoClasses.active=function(element){var instance=arguments;addEventHandler(element,"onmousedown",function(){IE7.Event.active.register(instance)})};dynamicPseudoClasses.focus=function(element){var instance=arguments;addEventHandler(element,"onfocus",function(){IE7.Event.focus.register(instance)});addEventHandler(element,"onblur",function(){IE7.Event.focus.unregister(instance)});if(element==document.activeElement){IE7.Event.focus.register(instance)}};addEventHandler(document,"onmouseup",function(){var ie7Event=IE7.Event.active;var instances=ie7Event.instances,i;for(i in instances)ie7Event.unregister(instances[i]);ie7Event=IE7.Event.hover;instances=ie7Event.instances;for(i in instances)if(!instances[i][0].contains(event.srcElement))ie7Event.unregister(instances[i])});var attributeSelectors=[];var ESCAPE=/([/()[\]?{}|*+])/g;function AttributeSelector(attribute,compare,value){value=getString(value);this.id=attributeSelectors.length;switch(attribute.toLowerCase()){case "id":attribute="element.id.replace(/ms_\x5cd+/g,'')";break;case "class":attribute="element.className.replace(/\x5cb\x5cs*ie7_\x5cd+/g,'')";break;default:attribute="element.getAttribute('"+attribute+"')"}compare=attributeTests[compare];push(attributeSelectors,new Function("element","return "+compare(attribute,value)))};AttributeSelector.ID=function(match,attribute,compare,value){return new AttributeSelector(attribute,compare,value)};AttributeSelector.prototype.toString=function(){return AttributeSelector.PREFIX+this.id};attributeTests={toString:function(){var toString=[];for(var i in this)if(i&&i!="escape")push(toString,i);return toString.join("").replace(/=/g,"")},escape:function(value){return value.replace(ESCAPE,"\x5c$1")},"":function(attribute){return attribute},"=":function(attribute,value){return attribute+"=="+quote(value)},"~=":function(attribute,value){return "/(^|\x5cs)"+attributeTests.escape(value)+"(\x5cs|$)/.test("+attribute+")"},"|=":function(attribute,value){return "/^"+attributeTests.escape(value)+"(-|$)/.test("+attribute+")"}};AttributeSelector.PREFIX="@";function _ie7Event(){this.register=function(instance){var element=instance[0];var target=instance[1];var Class=instance[2];for(var i=0;i<target.length;i++)Class.add(target[i]);this.instances[Class.id+element.uniqueID]=instance};this.unregister=function(instance){var element=instance[0];var target=instance[1];var Class=instance[2];for(var i=0;i<target.length;i++)Class.remove(target[i]);delete this.instances[Class.id+element.uniqueID]}};IE7.Event=function(type){this.type=type;this.instances={};IE7.Event[type]=this};IE7.Event.prototype=new _ie7Event;new IE7.Event("hover");new IE7.Event("active");new IE7.Event("focus");function simpleSelector(selector){return selector.replace(Class.COMPLEX,"").replace(CHILD," ")}},true);
diff --git a/www/inc/styles/ie7/ie7-css3.js b/www/inc/styles/ie7/ie7-css3.js deleted file mode 100644 index 56d312e..0000000 --- a/www/inc/styles/ie7/ie7-css3.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-css3",function(){if(!modules["ie7-css2"])return;selectors["~"]=function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var adjacent=from[i];while(adjacent=nextElement(adjacent)){if(adjacent&&compareTagName(adjacent,filter,scopeName))push(filtered,adjacent)}}};var documentElement=(isHTML)?document.documentElement:firstChildElement(document.body);pseudoClasses["root"]=function(element){return Boolean(element==documentElement||element==document.body)};pseudoClasses["empty"]=function(element){return!firstChildElement(element)&&!element.innerText};pseudoClasses["last-child"]=function(element){return!nextElement(element)};pseudoClasses["only-child"]=function(element){return(element.parentNode&&childElements(element.parentNode).length==1)};pseudoClasses["nth-child"]=function(element,filterArgs,step){return nthChild(element,filterArgs,previousElement)};pseudoClasses["nth-last-child"]=function(element,filterArgs){return nthChild(element,filterArgs,nextElement)};function nthChild(element,filterArgs,traverse){switch(filterArgs){case "n":return true;case "even":filterArgs="2n";break;case "odd":filterArgs="2n+1"}var children=childElements(element.parentNode);function checkIndex(index){index=(traverse==nextElement)?children.length-index:index-1;return children[index]==element};if(!isNaN(filterArgs))return checkIndex(filterArgs);filterArgs=filterArgs.split("n");var multiplier=parseInt(filterArgs[0]);var step=parseInt(filterArgs[1]);if(isNaN(multiplier)||(multiplier==1))return true;if(multiplier==0&&!isNaN(step))return checkIndex(step);if(isNaN(step))step=0;var count=1;while(element=traverse(element))count++;return((count%multiplier)==step)};function childElements(element){var childElements=[],i;for(i=0;i<element.childNodes.length;i++){if(isElement(element.childNodes[i]))push(childElements,element.childNodes[i])}return childElements};attributeTests["^="]=function(attribute,value){return "/^"+attributeTests.escape(value)+"/.test("+attribute+")"};attributeTests["$="]=function(attribute,value){return "/"+attributeTests.escape(value)+"$/.test("+attribute+")"};attributeTests["*="]=function(attribute,value){return "/"+attributeTests.escape(value)+"/.test("+attribute+")"}});
diff --git a/www/inc/styles/ie7/ie7-fixed.js b/www/inc/styles/ie7/ie7-fixed.js deleted file mode 100644 index f3c5b7a..0000000 --- a/www/inc/styles/ie7/ie7-fixed.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-fixed",function(){var PERCENT=/^\d+%$/;CSSFixes.addRecalc("position\x5cs*:\x5cs*fixed",positionFixed);CSSFixes.addRecalc("background[\x5cw\x5cs-]*:[^};]*fixed",backgroundFixed);var body=document.body;var viewport$=(quirksMode)?"body":"documentElement";var viewport=eval(viewport$);function fixBackground(){if(body.currentStyle.backgroundAttachment!="fixed"){if(body.currentStyle.backgroundImage=="none"){body.runtimeStyle.backgroundImage="url("+location.protocol+")"}body.runtimeStyle.backgroundAttachment="fixed"}fixBackground=DUMMY};var ie7_tmp=tmpElement("img");function topFunction(leftFunction){return String(leftFunction).replace(/Left/g,"Top").replace(/left/g,"top").replace(/Width/g,"Height").replace(/X/g,"Y")};function backgroundFixed(element){if(element.currentStyle.backgroundAttachment!="fixed")return;if(!element.contains(body)){fixBackground();backgroundFixed[backgroundFixed.count++]=element;backgroundLeft(element);backgroundTop(element);backgroundPosition(element)}};backgroundFixed.count=0;function backgroundPosition(element){ie7_tmp.src=element.currentStyle.backgroundImage.slice(5,-2);var parentElement=(element.canHaveChildren)?element:element.parentElement;parentElement.appendChild(ie7_tmp);setOffsetLeft(element);setOffsetTop(element);parentElement.removeChild(ie7_tmp)};function backgroundLeft(element){element.style.backgroundPositionX=element.currentStyle.backgroundPositionX;if(!isFixed(element)){var expression="(parseInt(runtimeStyle.offsetLeft)+document."+viewport$+".scrollLeft)||0";element.runtimeStyle.setExpression("backgroundPositionX",expression)}};eval(topFunction(backgroundLeft));function setOffsetLeft(element){var propertyName=isFixed(element)?"backgroundPositionX":"offsetLeft";element.runtimeStyle[propertyName]=getOffsetLeft(element,element.style.backgroundPositionX)-element.getBoundingClientRect().left-element.clientLeft};eval(topFunction(setOffsetLeft));function isFixed(element){if(!element)return false;if(element.style.position=="fixed"||element.currentStyle.position=="fixed")return true;return arguments.callee(element.parentElement)};function getOffsetLeft(element,position){switch(position){case "left":case "top":return 0;case "right":case "bottom":return viewport.clientWidth-ie7_tmp.offsetWidth;case "center":return(viewport.clientWidth-ie7_tmp.offsetWidth)/2;default:if(PERCENT.test(position)){return parseInt((viewport.clientWidth-ie7_tmp.offsetWidth)*parseFloat(position)/100)}ie7_tmp.style.left=position;return ie7_tmp.offsetLeft}};eval(topFunction(getOffsetLeft));function positionFixed(element){if(element.currentStyle.position!="fixed")return;fixBackground();positionFixed[positionFixed.count++]=element;element.style.position="fixed";element.runtimeStyle.position="absolute";foregroundPosition(element)};positionFixed.count=0;function foregroundPosition(element,recalc){positionLeft(element,recalc);positionTop(element,recalc);if(!recalc||element.runtimeStyle.autoTop){if(parseInt(element.currentStyle.bottom)==0)element.runtimeStyle.screenTop++}};function positionLeft(element,recalc){if(!recalc&&PERCENT.test(element.currentStyle.width))element.runtimeStyle.fixWidth=element.currentStyle.width;if(element.runtimeStyle.fixWidth)element.runtimeStyle.width=parseInt(parseFloat(element.runtimeStyle.fixWidth)/100*viewport.clientWidth);if(recalc){if(!element.runtimeStyle.autoLeft)return}else{element.runtimeStyle.autoLeft=element.currentStyle.right!="auto"&&element.currentStyle.left=="auto"}element.runtimeStyle.left="";element.runtimeStyle.screenLeft=getScreenLeft(element);if(element.currentStyle.marginLeft!="auto"){element.parentElement.appendChild(ie7_tmp);ie7_tmp.style.left=element.currentStyle.marginLeft;element.runtimeStyle.screenLeft-=ie7_tmp.offsetLeft;element.parentElement.removeChild(ie7_tmp)}if(isFixed(element.offsetParent))element.runtimeStyle.pixelLeft=element.runtimeStyle.screenLeft;else if(!recalc)element.runtimeStyle.setExpression("pixelLeft","runtimeStyle.screenLeft+document."+viewport$+".scrollLeft")};eval(topFunction(positionLeft).replace(/right/g,"bottom").replace(/width/g,"height"));function getScreenLeft(element){var getScreenLeft=element.offsetLeft,nested=false;var fixed=isFixed(element.offsetParent)&&element.runtimeStyle.autoLeft;while(element=element.offsetParent){if(!fixed&&element.currentStyle.position!="static")nested=true;getScreenLeft+=element.offsetLeft*(nested?-1:1)}return getScreenLeft};eval(topFunction(getScreenLeft));function resize(){for(var i=0;i<backgroundFixed.count;i++)backgroundPosition(backgroundFixed[i]);for(i=0;i<positionFixed.count;i++)foregroundPosition(positionFixed[i],true);timer=0};var timer;addEventHandler(window,"onresize",function(){if(!timer)timer=setTimeout(resize,10)})});
diff --git a/www/inc/styles/ie7/ie7-html4.js b/www/inc/styles/ie7/ie7-html4.js deleted file mode 100644 index 86a4c95..0000000 --- a/www/inc/styles/ie7/ie7-html4.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-html4",function(){if(isHTML)HTMLFixes=new function(){var fixes=[];function fix(element){var fixedElement=document.createElement("<HTML:"+element.outerHTML.slice(1));if(element.outerHTML.slice(-2)!="/>"){var endTag="</"+element.tagName+">",nextSibling;while((nextSibling=element.nextSibling)&&nextSibling.outerHTML!=endTag){element.parentNode.removeChild(nextSibling);fixedElement.appendChild(nextSibling)}if(nextSibling)element.parentNode.removeChild(nextSibling)}element.parentNode.replaceChild(fixedElement,element);return fixedElement};this.add=function(){push(fixes,arguments)};this.apply=function(){try{if(appVersion>5)document.namespaces.add("HTML","http://www.w3.org/1999/xhtml")}catch(ignore){}finally{for(var i=0;i<fixes.length;i++){var elements=cssQuery(fixes[i][0]);for(var j=0;j<elements.length;j++)fixes[i][1](elements[j])}}};this.add("label",function(element){if(!element.htmlFor){var input=cssQuery("input,select,textarea",element)[0];if(input){if(!input.id)input.id=input.uniqueID;element.htmlFor=input.id}}});this.add("abbr",function(element){fix(element);delete cssCache[" abbr"]});this.add("button,input",function(element){if(element.tagName=="BUTTON"){var match=element.outerHTML.match(/ value="([^"]*)"/i);element.runtimeStyle.value=(match)?match[1]:""}if(element.type=="submit"){addEventHandler(element,"onclick",function(){element.runtimeStyle.clicked=true;setTimeout("document.all."+element.uniqueID+".runtimeStyle.clicked=false",1)})}});this.add("form",function(element){var UNSUCCESSFUL=/^(submit|reset|button)$/;addEventHandler(element,"onsubmit",function(){for(var i=0;i<element.length;i++){if(UNSUCCESSFUL.test(element[i].type)&&!element[i].disabled&&!element[i].runtimeStyle.clicked){element[i].disabled=true;setTimeout("document.all."+element[i].uniqueID+".disabled=false",1)}else if(element[i].tagName=="BUTTON"&&element[i].type=="submit"){setTimeout("document.all."+element[i].uniqueID+".value='"+element[i].value+"'",1);element[i].value=element[i].runtimeStyle.value}}})})}},true);
\ No newline at end of file diff --git a/www/inc/styles/ie7/ie7-ie5.js b/www/inc/styles/ie7/ie7-ie5.js deleted file mode 100644 index 4529d95..0000000 --- a/www/inc/styles/ie7/ie7-ie5.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(isHTML){HEADER+="address,blockquote,body,dd,div,dl,dt,fieldset,form,frame,"+"frameset,h1,h2,h3,h4,h5,h6,iframe,noframes,object,p,applet,center,"+"dir,hr,menu,pre{display:block;height:0cm}li,ol,ul{display:block}"}if(![].push)push=function(array,item){array[array.length]=item;return array.length};if(![].pop)pop=function(array){var item=array[array.length-1];array.length--;return item};if("i".replace(/i/,function(){return""})){var a=String.prototype.replace,b=function(r,w){var m,n="",s=this;while((m=r.exec(s))){n+=s.slice(0,m.index)+w(m[0],m[1],m[2],m[3],m[4]);s=s.slice(m.lastIndex)}return n+s};String.prototype.replace=function(r,w){this.replace=(typeof w=="function")?b:a;return this.replace(r,w)}}
\ No newline at end of file diff --git a/www/inc/styles/ie7/ie7-lite-p.js b/www/inc/styles/ie7/ie7-lite-p.js deleted file mode 100644 index 887f62f..0000000 --- a/www/inc/styles/ie7/ie7-lite-p.js +++ /dev/null @@ -1,3 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-eval(function(A,r,s,e,n,a,l){s=function(e){return((e<a)?'':s(e/a))+n[l[340]](e%a+161)};while(++r<474)l[r]=(r<378)?'/'+l[r]+'/':'"'+l[r]+'"';while(--r>=0)A=A.replace(new RegExp(s(r),'g'),l[r]);return A}('if(!.) (){{.=; =.= ; (){if(.)...=};.=(){ }; =(.(.))?(){.(++)}:; =..()[1];if(.(.)||<5||!.(..)) (); =(.!=); =( .==)?!i.(.):(.!=); =; =;if(!)+=; ; =.; ={};.=(,,){if(!);if()(+());if(){();=}[]=}; =; (,){if(.())=(||)+; }; (,){=(,); .(0,.()+1)}; =(.[..-1].); = (); (,){{=(,);.(,,);.(); .}(){(+); }}; =(,){ .()}; =(){ .()};if(<5.5)((,));if(.==||!).(); .();.=.[..-1];..=;..=; ={}; (,){ =(.,);if([]) ;[]=(.)?:((,),(.,)); []}; =(){ .}; =gi; (,){ .(,+.(0,.()+1)+)};.=[];.=; =; _(){{=; =i; =.; =[]; =.();( i=.-1;i>=0;i--){(,.([i].)?:[i].)} (,){ =;if(.(.)){( i=0;i<..;i++){+=.(.[i],(.,))}+=((.)?(,):())} };.=;(i=0;i<.;i++).+=([i],);.=(.);(i in )[i](); ;if().();.();.();..=+(.);(i=0;i<.;i++){if(![i].&&![i].)[i].=}.();()}(){(+.)}{()}};.=(){.();( i=0;i<..;i++).[i]()}; = (){ =[];.=(){(,)}; =[];.=(,){ = (+,); =.;=[];(=.()){(,[1]);if(<5.5)=.(.)}if(.){=.();(,)}};.=(){( i=0;i<.;i++){.=..([i][0],[i][1])}.(,);.(,(){if(...==)(.)})};.=(){( i=0;i<.;i++){ =([i][0]);( j=0;j<.;j++)[i][1]([j])}};.(gi,);if(<6).(gi,);if(){ =.();( i=0;i<.;i++)[[i]]=[i-1]||; ($,$1,$2,$3){ $1+[$3]};.( (+.()+,),)}}; =; =g; =; =g; =; ={}; (,){ =!; =()?(.==)?:[]:[]; =.(,).(); =[];( i=0;i<.;i++){=([i]);if(.(0,3).()==){=.(2);=(,[1])} =; j=0,,,,=;(j<.){=[j++];=[j++];+=+;=;if([j]==){([j++]!=)+=[j];=.(0,-1);+=++}=(&&[])?[]:(,,,);if()[]=}=.()} }; (){if(.())=+; .()}; (,,,){ =;if(.()){=.();=[0];=[1]} =[];if([])[](,,,||); }; (,id){ =[],i,j;(i=0;i<.;i++){ =[i]..(id);if(){if(.==)(,); (j=0;j<.;j++)(,[j])}} }; ={:(,,,){( i=0;i<.;i++){ =(==&&[i].)?[i].:[i].();( j=0;j<.;j++){if(([j])&&(!||[j].==))(,[j])}}},:(,,){( i=0;i<.;i++)if([i].id==)(,[i])},:(,,){= (++);( i=0;i<.;i++)if(.([i].))(,[i])},:(,,,){=[];if()( i=0;i<.;i++)if(([i],))(,[i])}}; =; ={:(){ =[];( in ){if(!=&&!=){if([].>1)+=;(,)}} .()},:(){ (.[]==)},:(){ (.[]==)}}; ={:.}; (,,){if(&&.!=) ;(==)?():()?(.==.()):(.==)}; =[]; (){ .()?[.(1,-1)]:}; =(){ .(g,(){(.(0)==)?:+((,.(1,-1))-1)+}).(g,).(g,).(g,)}; (){ .(g,).(g,(,){ []})}; =[]; (,,){.(,);(,)}; (,,){{.(,)}(){}};.(,(){(.){ =();([0],[1],[2])}}); =(<6)?(){ .}:(){ ..}; (){if(!()){.=;(())}}; (){(){..=..;=()}}; =; (){(.())?:++}; (){(.())?.(1,-1):}; (){ =.(||);..=; }; (){ (&&.==1&&.!=&&!.)}; (){(&&(=.)&&!()); }; (){(&&(=.)&&!()); }; (){=.;(())?:()}; =;.(,(){if()= (){ =[]; (){ =.(+..(1));if(..(-2)!=){ =+.+,;((=.)&&.!=){..();.()}if()..()}..(,); };.=(){(,)};.=(){{if(>5)..(,)}(){}{( i=0;i<.;i++){ =([i][0]);( j=0;j<.;j++)[i][1]([j])}}};.(,(){if(!.){ =(,)[0];if(){if(!.id).id=.;.=.id}}});.(,(){(); []});.(,(){if(.==){ =..(i);..=()?[1]:}if(.==){(,,(){..=;(+.+,1)})}});.(,(){ =;(,,(){( i=0;i<.;i++){if(.([i].)&&![i].&&![i]..){[i].=;(+[i].+,1)} if([i].==&&[i].==){(+[i].++[i].+,1);[i].=[i]..}}})})}},);.(,(){ =,=,=,=; =(<6)?gi:gi; =(<5.5)?:; =();(., (){if(.)..()});.(,(){ .(0,3)+.(4).()+.(5)}); =()?.:; (){ ..==||..==}; (){ =.;(&&!())=.;if(!||())=; }; (){=(,){if(!..&&(!||.!=)){if(!)=..;..=(.())?.(0,(,)):;..=..;()}};if().(,); =()?(,){ (,)+()+()}:(,){ (,)}; (){ .-.}; (){ (,..)+(,..)}; (){((..==)?0:(,..))+((..==)?0:(,..))}; (){[.++]=;if(..==)..=0;();();()};.=0;.(+,);(().(g,));.=0;.(+,); (){ =.(); =.-.;if(..&&>=(,..))..=(,..); if(..&&<=(,..))..=(,..); ..=..}; (){if((..==||..==)&&..!=&&..!=&&.(..)){[.++]=;();()}};.=0;.(+,); (){..=; =(); =(..)?.().-2:(,..); =.-(,..)--();if(!)-=()+();if(<0)=0;if(()||||.<){..=;..=}}; =.;(,,(){ i,=(<.);=.;(i=0;i<.;i++){ =[i]; =(..==..);if(&&)..=;if(==)()}(i=0;i<.;i++){ =[i]; =(..==..);if(!&&)..=;if(!=)()}(i=0;i<.;i++)([i]);()}); (,){if(.()) ();if(.()) (()/100*().); =(.)?:.;.();..=; .}; (,){if(()>0) (,);if(.()) ();..();..=; .}};(().(g,).(g,).(g,).(g,).(g,).(g,));();()});=;if(.==)_(); (,,(){if(!&&.==)(_,0)})}(){();(+.)}{}}();',340,0,/./,String,95,'element`var`function`return`value`from`cssText`width`currentStyle`this`document`match`length`filter`for`runtimeStyle`test`href`replace`IE7`selector`styleSheet`push`filtered`path`tagName`slice`minWidth`x5cs`layoutParent`fixedWidth`scopeName`filterArgs`left`ie7_tmp`clientWidth`appVersion`ie7`fixes`link`styleSheets`while`recalcs`nextSibling`style`parentElement`count`maxWidth`CSSFixes`input`new`handler`toString`else`true`fixRight`documentElement`addRecalc`auto`position`type`false`token`SIZES`pattern`alert`load`complete`fixWidth`right`getPixelWidth`quirksMode`boxSizing`getFixedWidth`isHTML`all`add`elements`isElement`pseudoClass`selectors`cacheSelector`modules`script`catch`addEventHandler`getPixelLeft`wider`window`max`addFix`uniqueID`disabled`cssCache`try`arguments`node`Boolean`x5c`visited`subset`url`error`unHide`setTimeout`loaded`eval`parseInt`resizeWidth`NUMERIC`rect`min`offsetParent`hasLayout`addModule`outerHTML`cssQuery`apply`fixedElement`HTMLFixes`display`QUOTED`handlers`pop`strings`string`item`small`recalc`getCSSText`getPath`styles`DUMMY`pathname`makePath`array`httpRequest`finally`Error`readyState`String`appendChild`PIXEL`offsetWidth`resizeRight`isFixed`getPaddingWidth`getBorderWidth`fixed`absolute`x5cw`body`removeChild`box`submit`clicked`fix`select`ignore`parentNode`nextElement`x2f`pseudoClasses`join`RegExp`split`useCache`base`large`HEADER`inlineStyles`LINKS`location`description`height`PERCENT`removeTempElement`HEIGHT`getMarginWidth`getBoundingClientRect`AUTO`minHeight`marginRight`marginLeft`x5cd`UNIT`viewport`toUpperCase`charAt`MATCH`tmpElement`BUTTON`UNSUCCESSFUL`button`abbr`delete`htmlFor`HTML`endTag`createElement`firstChildElement`continue`block`marginTop`fixMargins`removeEventHandler`attachEvent`key`decode`encode`getElementsByTagName`selectById`NAMESPACE`STREAM`STANDARD_SELECT`toStream`ASTERISK`IMPLIED_SELECTOR`reg`parse`loadStyleSheet`imports`MEDIA`innerHTML`lastIndexOf`URL`fixUrls`scripts`RELATIVE`name`autoload`mimeType`search`message`onreadystatechange`fixHeight`bottom`Bottom`Right`top`Top`Left`Height`Width`offsetLeft`canHaveChildren`parseFloat`onresize`screenLeft`paddingRight`paddingLeft`Math`model`onsubmit`reset`form`onclick`textarea`label`xhtml`org`www`http`namespaces`replaceChild`html4`firstChild`previousSibling`previousElement`ie7_anon`nodeType`clip`none`border`padding`object`unquote`quote`contentEditable`onbeforeunload`detachEvent`import`namespace`getString`compareTagName`dynamicPseudoClasses`attributeTests`className`null`concat`Array`constructor`size`font`medium`list`inline`float`relative`content`sizing`lastIndex`exec`successfully`callee`media`ball`bscreen`write`createStyleSheet`ie5`file`not`could`responseText`send`GET`open`XMLHTTP`Microsoft`ActiveXObject`src`margin`Document`XML`xml`unknown`typeof`CSS1Compat`compatMode`ms_`ie7_off`MSIE`navigator`ie7_debug`alpha`version`visible`visibility`Function`fromCharCode`` (\\d\\.\\d)``^`\\.$`^[\\w\\.]+[^:]*$`(\\([\x27"]?)([\\w\\.]+[^:\\)]*[\x27"]?\\))`\\\\b|\\\\b|^$`-`(\\s*:\\s*(|))`\\s*:\\s*-`^[^>\\+~\\s]`[\\s>\\+~:@#\\.\\(\\)]|[^\\s>\\+~:@#\\.\\(\\)]+`\\|`([\\s>~\\,]|[^(]\\+|^)([\\.:#@])`(\\\\*[^\\*]*\\*+([^\\][^\\*]*\\*+)*\\)|(\x27[^\x27]*\x27)|("[^"]*")`@(|)[^;\\n]+[;\\n]|<!\\-\\-|\\-\\->`\\:`^\\s+|\\s*([\\{\\}\\+\\,>~\\s;])\\s*|\\s+$`\x27(\\d+)\x27`(\x27[^\x27]*\x27)|("[^"]*")` ="([^"]*)"`^(||)$`^\\d\\w*$`^\\d+%$`^\\d+(px)?$`\\b(|)-(|)\\s*:\\s*\\d`\\b(|)-\\s*:\\s*\\d`^|0cm$`^$````````` 0.7.3 ()`\\n\\n``` `:{-:}:{-:}`*{:0}`=``/`.`` [1]: `-.js``<></>`$1`$2`` ` [2]: `([^{}]*)\\{([^}]*[^\\-])?`gi`-\\*:\\*-`\\*:\\*``:;$1`:`xx-,x-,,,,x-,xx-`,`xx-`((-)?\\*:\\*)(`|`)`$1*$2` *#`(` `*`#`.`(^|\\)`(\\|$)`:```\\([^)]*\\)`-`\x27`\\:```:;:0;:;:;:(0 0 0 0);:-9999`!`-`<:`/>`</`>``://.w3./1999/``,,`` `,````..`..=```.=`.=\x27`--`\\*:\\*\\[\\%]*``HR`\\*:\\*\\\\*[^%]``-``-``````````` [0]: '.split('\x60')));
-/* packed with http://dean.edwards.name/packer/ */
diff --git a/www/inc/styles/ie7/ie7-lite.js b/www/inc/styles/ie7/ie7-lite.js deleted file mode 100644 index 493d8f1..0000000 --- a/www/inc/styles/ie7/ie7-lite.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(!window.IE7)new function(){try{window.IE7=this;var DUMMY=this.addModule=new Function;function unHide(){if(document.body)document.body.style.visibility="visible"};this.toString=function(){return "IE7 version 0.7.3 (alpha)"};var alert=(/ie7_debug/.test(location.search))?function(message){window.alert(IE7+"\n\n"+message)}:DUMMY;var appVersion=navigator.appVersion.match(/MSIE (\d\.\d)/)[1];if(/ie7_off/.test(location.search)||appVersion<5||!/^ms_/.test(document.documentElement.uniqueID))return unHide();var quirksMode=Boolean(document.compatMode!="CSS1Compat");var isHTML=(typeof document.mimeType=="unknown")?!/\.xml$/i.test(location.pathname):Boolean(document.mimeType!="XML Document");var LINKS=":link{ie7-link:link}:visited{ie7-link:visited}";var HEADER=LINKS;if(!isHTML)HEADER+="*{margin:0}";var HTMLFixes;var documentElement=document.documentElement;var modules={};this.addModule=function(name,script,autoload){if(!modules)return;if(loaded)eval("script="+String(script));if(autoload){script();script=DUMMY}modules[name]=script};var RELATIVE=/^[\w\.]+[^:]*$/;function makePath(href,path){if(RELATIVE.test(href))href=(path||"")+href;return href};function getPath(href,path){href=makePath(href,path);return href.slice(0,href.lastIndexOf("/")+1)};var path=getPath(document.scripts[document.scripts.length-1].src);var httpRequest=new ActiveXObject("Microsoft.XMLHTTP");function load(href,path){try{href=makePath(href,path);httpRequest.open("GET",href,false);httpRequest.send();return httpRequest.responseText}catch(ignore){alert("Error [1]: could not load file "+href);return ""}};var push=function(array,item){return array.push(item)};var pop=function(array){return array.pop()};if(appVersion<5.5)eval(load("ie7-ie5.js",path));if(document.readyState=="complete"||!isHTML)document.createStyleSheet();else document.write("<style></style>");this.styleSheet=document.styleSheets[document.styleSheets.length-1];this.styleSheet.cssText=LINKS;this.styleSheet.ie7=true;var cssText={};function loadStyleSheet(styleSheet,path){var url=makePath(styleSheet.href,path);if(cssText[url])return "";cssText[url]=(styleSheet.disabled)?"":fixUrls(getCSSText(styleSheet,path),getPath(styleSheet.href,path));return cssText[url]};var getCSSText=function(styleSheet){return styleSheet.cssText};var URL=/(url\(['"]?)([\w\.]+[^:\)]*['"]?\))/gi;function fixUrls(cssText,pathname){return cssText.replace(URL,"$1"+pathname.slice(0,pathname.lastIndexOf("/")+1)+"$2")};this.recalcs=[];this.parse=DUMMY;var complete=false;function _load(){try{complete=true;var MEDIA=/\bscreen\b|\ball\b|^$/i;var styleSheets=document.styleSheets;var inlineStyles=[];var styles=document.getElementsByTagName("style");for(var i=styles.length-1;i>=0;i--){push(inlineStyles,/ie7-link/.test(styles[i].innerHTML)?"":styles[i].innerHTML)}function getCSSText(styleSheet,path){var cssText="";if(MEDIA.test(styleSheet.media)){for(var i=0;i<styleSheet.imports.length;i++){cssText+=arguments.callee(styleSheet.imports[i],getPath(styleSheet.href,path))}cssText+=((styleSheet.href)?loadStyleSheet(styleSheet,path):pop(inlineStyles))}return cssText};IE7.cssText="";for(i=0;i<styleSheets.length;i++)IE7.cssText+=getCSSText(styleSheets[i],"");IE7.cssText=encode(IE7.cssText);for(i in modules)modules[i]();delete modules;if(HTMLFixes)HTMLFixes.apply();CSSFixes.apply();IE7.parse();IE7.styleSheet.cssText=HEADER+decode(IE7.cssText);for(i=0;i<styleSheets.length;i++){if(!styleSheets[i].disabled&&!styleSheets[i].ie7)styleSheets[i].cssText=""}IE7.recalc();alert("loaded successfully")}catch(error){alert("Error [2]: "+error.description)}finally{unHide()}};this.recalc=function(){CSSFixes.recalc();for(var i=0;i<this.recalcs.length;i++)this.recalcs[i]()};var CSSFixes=new function(){var fixes=[];this.addFix=function(){push(fixes,arguments)};var recalcs=[];this.addRecalc=function(pattern,fix){var reg=new RegExp("([^{}]*)\x5c{([^}]*[^\x5cw-])?"+pattern,"gi");var cssText=IE7.cssText;pattern=[];while(match=reg.exec(cssText)){push(pattern,match[1]);if(appVersion<5.5)cssText=cssText.slice(match.lastIndex)}if(pattern.length){pattern=pattern.toString();push(recalcs,arguments)}};this.apply=function(){for(var i=0;i<fixes.length;i++){IE7.cssText=IE7.cssText.replace(fixes[i][0],fixes[i][1])}this.addRecalc("box-sizing\x5cs*:\x5cs*content-box",boxSizing);this.addRecalc("position\x5cs*:\x5cs*absolute",function(element){if(element.offsetParent.currentStyle.position=="relative")boxSizing(element.offsetParent)})};this.recalc=function(){for(var i=0;i<recalcs.length;i++){var elements=cssQuery(recalcs[i][0]);for(var j=0;j<elements.length;j++)recalcs[i][1](elements[j])}};this.addFix(/(float\s*:\s*(left|right))/gi,"display:inline;$1");if(appVersion<6)this.addFix(/display\s*:\s*list-item/gi,"display:block");if(quirksMode){var SIZES="xx-small,x-small,small,medium,large,x-large,xx-large".split(",");for(var i=0;i<SIZES.length;i++)SIZES[SIZES[i]]=SIZES[i-1]||"xx-small";function replace($,$1,$2,$3){return $1+SIZES[$3]};this.addFix(new RegExp("(font(-size)?\x5cs*:\x5cs*)("+SIZES.join("|")+")","gi"),replace)}};var STANDARD_SELECT=/^[^>\+~\s]/;var STREAM=/[\s>\+~:@#\.\(\)]|[^\s>\+~:@#\.\(\)]+/g;var NAMESPACE=/\|/;var IMPLIED_SELECTOR=/([\s>~\,]|[^(]\+|^)([\.:#@])/g;var ASTERISK="$1*$2";var cssCache={};function cssQuery(selector,from){var useCache=!from;var base=(from)?(from.constructor==Array)?from:[from]:[document];var selectors=selector.replace(IMPLIED_SELECTOR,ASTERISK).split(",");var match=[];for(var i=0;i<selectors.length;i++){selector=toStream(selectors[i]);if(selector.slice(0,3).join("")==" *#"){selector=selector.slice(2);from=selectById(base,selector[1])}else from=base;var j=0,token,filter,filterArgs,cacheSelector="";while(j<selector.length){token=selector[j++];filter=selector[j++];cacheSelector+=token+filter;filterArgs="";if(selector[j]=="("){while(selector[j++]!=")")filterArgs+=selector[j];filterArgs=filterArgs.slice(0,-1);cacheSelector+="("+filterArgs+")"}from=(useCache&&cssCache[cacheSelector])?cssCache[cacheSelector]:select(from,token,filter,filterArgs);if(useCache)cssCache[cacheSelector]=from}match=match.concat(from)}return match};function toStream(selector){if(STANDARD_SELECT.test(selector))selector=" "+selector;return selector.match(STREAM)};function select(from,token,filter,filterArgs){var scopeName="";if(NAMESPACE.test(filter)){filter=filter.split("|");scopeName=filter[0];filter=filter[1]}var filtered=[];if(selectors[token])selectors[token](filtered,from,filter,scopeName||filterArgs);return filtered};function selectById(from,id){var filtered=[],i,j;for(i=0;i<from.length;i++){var match=from[i].all.item(id);if(match){if(match.length==null)push(filtered,match);else for(j=0;j<match.length;j++)push(filtered,match[j])}}return filtered};var selectors={" ":function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var subset=(filter=="*"&&from[i].all)?from[i].all:from[i].getElementsByTagName(filter);for(var j=0;j<subset.length;j++){if(isElement(subset[j])&&(!scopeName||subset[j].scopeName==scopeName))push(filtered,subset[j])}}},"#":function(filtered,from,filter){for(var i=0;i<from.length;i++)if(from[i].id==filter)push(filtered,from[i])},".":function(filtered,from,filter){filter=new RegExp("(^|\x5cs)"+filter+"(\x5cs|$)");for(var i=0;i<from.length;i++)if(filter.test(from[i].className))push(filtered,from[i])},":":function(filtered,from,filter,filterArgs){filter=pseudoClasses[filter];if(filter)for(var i=0;i<from.length;i++)if(filter(from[i],filterArgs))push(filtered,from[i])}};var attributeTests="";var pseudoClasses={toString:function(){var toString=[];for(var pseudoClass in this){if(pseudoClass!="link"&&pseudoClass!="visited"){if(this[pseudoClass].length>1)pseudoClass+="\x5c([^)]*\x5c)";push(toString,pseudoClass)}}return toString.join("|")},"link":function(element){return Boolean(element.currentStyle["ie7-link"]=="link")},"visited":function(element){return Boolean(element.currentStyle["ie7-link"]=="visited")}};var dynamicPseudoClasses={toString:pseudoClasses.toString};function compareTagName(element,tagName,scopeName){if(scopeName&&element.scopeName!=scopeName)return false;return(tagName=="*")?isElement(element):(isHTML)?(element.tagName==tagName.toUpperCase()):(element.tagName==tagName)};var strings=[];function getString(string){return QUOTED.test(string)?strings[string.slice(1,-1)]:string};var encode=function(cssText){return cssText.replace(/(\x2f\*[^\*]*\*+([^\x2f][^\*]*\*+)*\x2f)|('[^']*')|("[^"]*")/g,function(match){return(match.charAt(0)=="/")?"":"'"+(push(strings,match.slice(1,-1))-1)+"'"}).replace(/@(namespace|import)[^;\n]+[;\n]|<!\-\-|\-\->/g,"").replace(/\x5c:/g,"|").replace(/^\s+|\s*([\{\}\+\,>~\s;])\s*|\s+$/g,"$1")};function decode(cssText){return cssText.replace(/\|/g,"\x5c:").replace(/'(\d+)'/g,function(match,key){return strings[key]})};var handlers=[];function addEventHandler(element,type,handler){element.attachEvent(type,handler);push(handlers,arguments)};function removeEventHandler(element,type,handler){try{element.detachEvent(type,handler)}catch(ignore){}};window.attachEvent("onbeforeunload",function(){while(handlers.length){var handler=pop(handlers);removeEventHandler(handler[0],handler[1],handler[2])}});var hasLayout=(appVersion<6)?function(element){return element.clientWidth}:function(element){return element.currentStyle.hasLayout};function boxSizing(element){if(!hasLayout(element)){element.contentEditable=false;fixMargins(firstChildElement(element))}};function fixMargins(element){while(element){element.runtimeStyle.marginTop=element.currentStyle.marginTop;element=nextElement(element)}};var QUOTED=/('[^']*')|("[^"]*")/;function quote(value){return(QUOTED.test(value))?value:"'"+value+"'"};function unquote(value){return(QUOTED.test(value))?value.slice(1,-1):value};function tmpElement(tagName){var element=document.createElement(tagName||"object");element.style.cssText="position:absolute;padding:0;display:block;border:none;clip:rect(0 0 0 0);left:-9999";return element};function isElement(node){return Boolean(node&&node.nodeType==1&&node.tagName!="!"&&!node.ie7_anon)};function previousElement(element){while(element&&(element=element.previousSibling)&&!isElement(element))continue;return element};function nextElement(element){while(element&&(element=element.nextSibling)&&!isElement(element))continue;return element};function firstChildElement(element){element=element.firstChild;return(isElement(element))?element:nextElement(element)};var loaded=false;IE7.addModule("ie7-html4",function(){if(isHTML)HTMLFixes=new function(){var fixes=[];function fix(element){var fixedElement=document.createElement("<HTML:"+element.outerHTML.slice(1));if(element.outerHTML.slice(-2)!="/>"){var endTag="</"+element.tagName+">",nextSibling;while((nextSibling=element.nextSibling)&&nextSibling.outerHTML!=endTag){element.parentNode.removeChild(nextSibling);fixedElement.appendChild(nextSibling)}if(nextSibling)element.parentNode.removeChild(nextSibling)}element.parentNode.replaceChild(fixedElement,element);return fixedElement};this.add=function(){push(fixes,arguments)};this.apply=function(){try{if(appVersion>5)document.namespaces.add("HTML","http://www.w3.org/1999/xhtml")}catch(ignore){}finally{for(var i=0;i<fixes.length;i++){var elements=cssQuery(fixes[i][0]);for(var j=0;j<elements.length;j++)fixes[i][1](elements[j])}}};this.add("label",function(element){if(!element.htmlFor){var input=cssQuery("input,select,textarea",element)[0];if(input){if(!input.id)input.id=input.uniqueID;element.htmlFor=input.id}}});this.add("abbr",function(element){fix(element);delete cssCache[" abbr"]});this.add("button,input",function(element){if(element.tagName=="BUTTON"){var match=element.outerHTML.match(/ value="([^"]*)"/i);element.runtimeStyle.value=(match)?match[1]:""}if(element.type=="submit"){addEventHandler(element,"onclick",function(){element.runtimeStyle.clicked=true;setTimeout("document.all."+element.uniqueID+".runtimeStyle.clicked=false",1)})}});this.add("form",function(element){var UNSUCCESSFUL=/^(submit|reset|button)$/;addEventHandler(element,"onsubmit",function(){for(var i=0;i<element.length;i++){if(UNSUCCESSFUL.test(element[i].type)&&!element[i].disabled&&!element[i].runtimeStyle.clicked){element[i].disabled=true;setTimeout("document.all."+element[i].uniqueID+".disabled=false",1)}else if(element[i].tagName=="BUTTON"&&element[i].type=="submit"){setTimeout("document.all."+element[i].uniqueID+".value='"+element[i].value+"'",1);element[i].value=element[i].runtimeStyle.value}}})})}},true);IE7.addModule("ie7-box-model",function(){var NUMERIC="\x5cs*:\x5cs*\x5cd[\x5cw%]*",UNIT=/^\d\w*$/,PERCENT=/^\d+%$/,PIXEL=/^\d+(px)?$/;var MATCH=(appVersion<6)?/\b(min|max)-(width|height)\s*:\s*\d/gi:/\b(min|max)-width\s*:\s*\d/gi;var AUTO=(appVersion<5.5)?/^auto|0cm$/:/^auto$/;var ie7_tmp=tmpElement();push(IE7.recalcs,function removeTempElement(){if(ie7_tmp.parentElement)ie7_tmp.parentElement.removeChild(ie7_tmp)});CSSFixes.addFix(MATCH,function(match){return match.slice(0,3)+match.charAt(4).toUpperCase()+match.slice(5)});var viewport=(quirksMode)?document.body:documentElement;function isFixed(element){return element.style.position=="fixed"||element.currentStyle.position=="fixed"};function layoutParent(element){var layoutParent=element.offsetParent;while(layoutParent&&!hasLayout(layoutParent))layoutParent=layoutParent.offsetParent;if(!layoutParent||isFixed(element))layoutParent=viewport;return layoutParent};function fixWidth(HEIGHT){fixWidth=function(element,value){if(!element.runtimeStyle.fixedWidth&&(!isHTML||element.tagName!="HR")){if(!value)value=element.currentStyle.width;element.runtimeStyle.fixedWidth=(UNIT.test(value))?Math.max(0,getFixedWidth(element,value)):value;element.runtimeStyle.width=element.runtimeStyle.fixedWidth;boxSizing(element)}};if(quirksMode)CSSFixes.addRecalc("width\x5cs*:\x5cs*\x5cd\x5cw*[^%]",fixWidth);var getFixedWidth=(quirksMode)?function(element,value){return getPixelWidth(element,value)+getBorderWidth(element)+getPaddingWidth(element)}:function(element,value){return getPixelWidth(element,value)};function getBorderWidth(element){return element.offsetWidth-element.clientWidth};function getPaddingWidth(element){return getPixelWidth(element,element.currentStyle.paddingLeft)+getPixelWidth(element,element.currentStyle.paddingRight)};function getMarginWidth(element){return((element.currentStyle.marginLeft=="auto")?0:getPixelLeft(element,element.currentStyle.marginLeft))+((element.currentStyle.marginRight=="auto")?0:getPixelLeft(element,element.currentStyle.marginRight))};function minWidth(element){minWidth[minWidth.count++]=element;if(element.currentStyle.minHeight=="auto")element.runtimeStyle.minHeight=0;fixWidth(element);boxSizing(element);resizeWidth(element)};minWidth.count=0;CSSFixes.addRecalc("min-width"+NUMERIC,minWidth);eval(String(minWidth).replace(/min/g,"max"));maxWidth.count=0;CSSFixes.addRecalc("max-width"+NUMERIC,maxWidth);function resizeWidth(element){var rect=element.getBoundingClientRect();var width=rect.right-rect.left;if(element.currentStyle.maxWidth&&width>=getFixedWidth(element,element.currentStyle.maxWidth))element.runtimeStyle.width=getFixedWidth(element,element.currentStyle.maxWidth);else if(element.currentStyle.minWidth&&width<=getFixedWidth(element,element.currentStyle.minWidth))element.runtimeStyle.width=getFixedWidth(element,element.currentStyle.minWidth);else element.runtimeStyle.width=element.runtimeStyle.fixedWidth};function fixRight(element){if((element.currentStyle.position=="absolute"||element.currentStyle.position=="fixed")&&element.currentStyle.left!="auto"&&element.currentStyle.right!="auto"&&AUTO.test(element.currentStyle.width)){fixRight[fixRight.count++]=element;boxSizing(element);resizeRight(element)}};fixRight.count=0;CSSFixes.addRecalc("right"+NUMERIC,fixRight);function resizeRight(element){element.runtimeStyle.width="";var parentElement=layoutParent(element);var left=(element.runtimeStyle.screenLeft)?element.getBoundingClientRect().left-2:getPixelLeft(element,element.currentStyle.left);var width=parentElement.clientWidth-getPixelLeft(element,element.currentStyle.right)-left-getMarginWidth(element);if(!quirksMode)width-=getBorderWidth(element)+getPaddingWidth(element);if(width<0)width=0;if(isFixed(element)||HEIGHT||element.offsetWidth<width){element.runtimeStyle.fixedWidth=width;element.runtimeStyle.width=width}};var clientWidth=documentElement.clientWidth;addEventHandler(window,"onresize",function(){var i,wider=(clientWidth<documentElement.clientWidth);clientWidth=documentElement.clientWidth;for(i=0;i<minWidth.count;i++){var element=minWidth[i];var fixedWidth=(element.runtimeStyle.width==element.currentStyle.minWidth);if(wider&&fixedWidth)element.runtimeStyle.width="";if(wider==fixedWidth)resizeWidth(element)}for(i=0;i<maxWidth.count;i++){var element=maxWidth[i];var fixedWidth=(element.runtimeStyle.width==element.currentStyle.maxWidth);if(!wider&&fixedWidth)element.runtimeStyle.width="";if(wider!=fixedWidth)resizeWidth(element)}for(i=0;i<fixRight.count;i++)resizeRight(fixRight[i]);removeTempElement()});function getPixelWidth(element,value){if(PIXEL.test(value))return parseInt(value);if(PERCENT.test(value))return parseInt(parseFloat(value)/100*layoutParent(element).clientWidth);var parentElement=(element.canHaveChildren)?element:element.parentElement;parentElement.appendChild(ie7_tmp);ie7_tmp.style.width=value;return ie7_tmp.offsetWidth};function getPixelLeft(element,value){if(parseInt(value)>0)return getPixelWidth(element,value);if(PIXEL.test(value))return parseInt(value);element.parentElement.appendChild(ie7_tmp);ie7_tmp.style.left=value;return ie7_tmp.offsetLeft}};eval(String(fixWidth).replace(/Width/g,"Height").replace(/width/g,"height").replace(/Left/g,"Top").replace(/left/g,"top").replace(/Right/g,"Bottom").replace(/right/g,"bottom"));fixWidth();fixHeight(true)});loaded=true;if(document.readyState=="complete")_load();else addEventHandler(document,"onreadystatechange",function(){if(!complete&&document.readyState=="complete")setTimeout(_load,0)})}catch(error){unHide();alert("Error [0]: "+error.description)}finally{}}();
diff --git a/www/inc/styles/ie7/ie7-logo.gif b/www/inc/styles/ie7/ie7-logo.gif Binary files differdeleted file mode 100644 index fe4a7bc..0000000 --- a/www/inc/styles/ie7/ie7-logo.gif +++ /dev/null diff --git a/www/inc/styles/ie7/ie7-png.js b/www/inc/styles/ie7/ie7-png.js deleted file mode 100644 index f9c7e80..0000000 --- a/www/inc/styles/ie7/ie7-png.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(window.IE7)IE7.addModule("ie7-png",function(){if(appVersion<5.5)return;var FILTER="progid:DXImageTransform.Microsoft.AlphaImageLoader(src=%1,sizingMethod='scale')";var NULL=(/\bSV1\b/.test(navigator.userAgent))?makePath("blank.gif",path):"javascript:'#define x_width 1\x5cn#define x_height 1\x5cnstatic char x_bits[]={0x00}'";var pngTest=new RegExp((window.IE7_PNG_SUFFIX||"-trans.png")+"$","i");function addFilter(element,src){element.runtimeStyle.filter=FILTER.replace(/%1/,src)};var MATCH=/background(-image)?\s*:([^(};]*)url\(([^\)]+)\)([^;}]*)/gi;CSSFixes.addFix(MATCH,function replace(match,image,prefix,url,suffix){url=getString(url);return pngTest.test(url)?"filter:"+FILTER.replace(/scale/,"crop").replace(/%1/,url)+";zoom:1;background"+(image||"")+":"+(prefix||"")+"none"+(suffix||""):match});if(HTMLFixes){function fixImg(element){if(pngTest.test(element.src)){var width=element.width,height=element.height;addFilter(element,element.src);element.src=NULL;element.width=width;element.height=height}else element.runtimeStyle.filter=""};HTMLFixes.add("img,input",function(element){if(element.tagName=="INPUT"&&element.type!="image")return;fixImg(element);addEventHandler(element,"onpropertychange",function(){if(event.propertyName=="src")fixImg(element)})})}});
diff --git a/www/inc/styles/ie7/ie7-server.css b/www/inc/styles/ie7/ie7-server.css deleted file mode 100644 index 47c7edd..0000000 --- a/www/inc/styles/ie7/ie7-server.css +++ /dev/null @@ -1,43 +0,0 @@ -body, td, dd {font: 10pt Verdana, Arial, Helvetica, sans-serif; color: black;} -body {margin: 8px; background: #333;} -h1 {margin: 0;} -h1 a:hover {background-color: transparent;} -h2 {font-size: 1.75em;} -h3 {font-size: 1.1em;} -a:active {color: #ff0000;} -a:link {color: #0a6cce;} -a:visited {color: #0a6cce;} -code, *.code {font-family: monospace; font-size: 100%; font-style: normal; white-space: nowrap; - padding: 0 1px; background: #f2f3f8; border: #d6d9e9 1px solid;} -code.box {display: block; padding: 10px; margin: 0.5em 0;} -ul {list-style-type: square;} -dd {margin: .2em 0 .5em 1em;} -dl.library dt {display: list-item; margin-left: 3em; list-style-type: square;} -dl.library dd {font-style: italic; margin-left: 3em;} -dt {font-weight: bold;} -dt.pack {color: brown;} -a img {border-style: none;} -hr {height: 1px; color: #000; border-style: solid;} -hr.short {height: 2px; width: 100px;} -div.document {background: #eef; padding: 20px 20px 5px 20px; width: 600px; border: 1px solid black;} -hr {border-bottom-width: 0px;} -div.header hr {color: #0a6cce; background-color: #0a6cce;} -div.content {min-height: 100px;} -div.footer hr {color: #898e79; background-color: #898e79; } -div.header, div.header a:link, div.header a:visited, h3 a:link, h3 a:visited {text-decoration: none;} -a:hover {color: #fff; background-color: #0a6cce; text-decoration: none;} -div.footer a:hover {background-color: transparent; text-decoration: none;} -div.header .menu {text-align: right;} -div.footer {font-size: x-small; margin-top: 8px;} -div.footnote {font-family: "times new roman", times; font-style: italic; margin-top: 10px;} -#license {margin-top: 5px; font-size: xx-small;} -table {border-top: 1px solid #000; border-left: 1px solid #000;} -th {background-color: #fff; text-align: left;} -th, td {border-right: 1px solid #000; border-bottom: 1px solid #000;} -th.small {width: 100px;} -th.medium {width: 200px;} -th.large {width: 270px;} -th.x-large {width: 408px;} -table.fixed {table-layout: fixed;} -span.comment {color: #666;} - diff --git a/www/inc/styles/ie7/ie7-standard-p.js b/www/inc/styles/ie7/ie7-standard-p.js deleted file mode 100644 index 8dfb5e0..0000000 --- a/www/inc/styles/ie7/ie7-standard-p.js +++ /dev/null @@ -1,3 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-eval(function(A,r,s,e,n,a,l){s=function(e){return((e<a)?'':s(e/a))+n[l[493]](e%a+161)};while(++r<735)l[r]=(r<549)?'/'+l[r]+'/':'"'+l[r]+'"';while(--r>=0)A=A.replace(new RegExp(s(r),'g'),l[r]);return A}('if(!.) (){{.=; =.= ; (){if(.)...=};.=(){ }; =(.(.))?(){.(++)}:; =..()[1];if(.(.)||<5||!.(..)) (); =(.!=); =( .==)?!i.(.):(.!=); =; =;if(!)+=; ; =.; ={};.=(,,){if(!);if()(+());if(){();=}[]=}; =; (,){if(.())=(||)+; }; (,){=(,); .(0,.()+1)}; =(.[..-1].); = (); (,){{=(,);.(,,);.(); .}(){(+); }}; =(,){ .()}; =(){ .()};if(<5.5)((,));if(.==||!).(); .();.=.[..-1];..=;..=; ={}; (,){ =(.,);if([]) ;[]=(.)?:((,),(.,)); []}; =(){ .}; =gi; (,){ .(,+.(0,.()+1)+)};.=[];.=; =; _(){{=; =i; =.; =[]; =.();( i=.-1;i>=0;i--){(,.([i].)?:[i].)} (,){ =;if(.(.)){( i=0;i<..;i++){+=.(.[i],(.,))}+=((.)?(,):())} };.=;(i=0;i<.;i++).+=([i],);.=(.);(i in )[i](); ;if().();.();.();..=+(.);(i=0;i<.;i++){if(![i].&&![i].)[i].=}.();()}(){(+.)}{()}};.=(){.();( i=0;i<..;i++).[i]()}; = (){ =[];.=(){(,)}; =[];.=(,){ = (+,); =.;=[];(=.()){(,[1]);if(<5.5)=.(.)}if(.){=.();(,)}};.=(){( i=0;i<.;i++){.=..([i][0],[i][1])}.(,);.(,(){if(...==)(.)})};.=(){( i=0;i<.;i++){ =([i][0]);( j=0;j<.;j++)[i][1]([j])}};.(gi,);if(<6).(gi,);if(){ =.();( i=0;i<.;i++)[[i]]=[i-1]||; ($,$1,$2,$3){ $1+[$3]};.( (+.()+,),)}}; =; =g; =; =g; =; ={}; (,){ =!; =()?(.==)?:[]:[]; =.(,).(); =[];( i=0;i<.;i++){=([i]);if(.(0,3).()==){=.(2);=(,[1])} =; j=0,,,,=;(j<.){=[j++];=[j++];+=+;=;if([j]==){([j++]!=)+=[j];=.(0,-1);+=++}=(&&[])?[]:(,,,);if()[]=}=.()} }; (){if(.())=+; .()}; (,,,){ =;if(.()){=.();=[0];=[1]} =[];if([])[](,,,||); }; (,id){ =[],i,j;(i=0;i<.;i++){ =[i]..(id);if(){if(.==)(,); (j=0;j<.;j++)(,[j])}} }; ={:(,,,){( i=0;i<.;i++){ =(==&&[i].)?[i].:[i].();( j=0;j<.;j++){if(([j])&&(!||[j].==))(,[j])}}},:(,,){( i=0;i<.;i++)if([i].id==)(,[i])},:(,,){= (++);( i=0;i<.;i++)if(.([i].))(,[i])},:(,,,){=[];if()( i=0;i<.;i++)if(([i],))(,[i])}}; =; ={:(){ =[];( in ){if(!=&&!=){if([].>1)+=;(,)}} .()},:(){ (.[]==)},:(){ (.[]==)}}; ={:.}; (,,){if(&&.!=) ;(==)?():()?(.==.()):(.==)}; =[]; (){ .()?[.(1,-1)]:}; =(){ .(g,(){(.(0)==)?:+((,.(1,-1))-1)+}).(g,).(g,).(g,)}; (){ .(g,).(g,(,){ []})}; =[]; (,,){.(,);(,)}; (,,){{.(,)}(){}};.(,(){(.){ =();([0],[1],[2])}}); =(<6)?(){ .}:(){ ..}; (){if(!()){.=;(())}}; (){(){..=..;=()}}; =; (){(.())?:++}; (){(.())?.(1,-1):}; (){ =.(||);..=; }; (){ (&&.==1&&.!=&&!.)}; (){(&&(=.)&&!()); }; (){(&&(=.)&&!()); }; (){=.;(())?:()}; =;.(,(){if()= (){ =[]; (){ =.(+..(1));if(..(-2)!=){ =+.+,;((=.)&&.!=){..();.()}if()..()}..(,); };.=(){(,)};.=(){{if(>5)..(,)}(){}{( i=0;i<.;i++){ =([i][0]);( j=0;j<.;j++)[i][1]([j])}}};.(,(){if(!.){ =(,)[0];if(){if(!.id).id=.;.=.id}}});.(,(){(); []});.(,(){if(.==){ =..(i);..=()?[1]:}if(.==){(,,(){..=;(+.+,1)})}});.(,(){ =;(,,(){( i=0;i<.;i++){if(.([i].)&&![i].&&![i]..){[i].=;(+[i].+,1)} if([i].==&&[i].==){(+[i].++[i].+,1);[i].=[i]..}}})})}},);.(,(){ =,=,=,=; =(<6)?gi:gi; =(<5.5)?:; =();(., (){if(.)..()});.(,(){ .(0,3)+.(4).()+.(5)}); =()?.:; (){ ..==||..==}; (){ =.;(&&!())=.;if(!||())=; }; (){=(,){if(!..&&(!||.!=)){if(!)=..;..=(.())?.(0,(,)):;..=..;()}};if().(,); =()?(,){ (,)+()+()}:(,){ (,)}; (){ .-.}; (){ (,..)+(,..)}; (){((..==)?0:(,..))+((..==)?0:(,..))}; (){[.++]=;if(..==)..=0;();();()};.=0;.(+,);(().(g,));.=0;.(+,); (){ =.(); =.-.;if(..&&>=(,..))..=(,..); if(..&&<=(,..))..=(,..); ..=..}; (){if((..==||..==)&&..!=&&..!=&&.(..)){[.++]=;();()}};.=0;.(+,); (){..=; =(); =(..)?.().-2:(,..); =.-(,..)--();if(!)-=()+();if(<0)=0;if(()||||.<){..=;..=}}; =.;(,,(){ i,=(<.);=.;(i=0;i<.;i++){ =[i]; =(..==..);if(&&)..=;if(==)()}(i=0;i<.;i++){ =[i]; =(..==..);if(!&&)..=;if(!=)()}(i=0;i<.;i++)([i]);()}); (,){if(.()) ();if(.()) (()/100*().); =(.)?:.;.();..=; .}; (,){if(()>0) (,);if(.()) ();..();..=; .}};(().(g,).(g,).(g,).(g,).(g,).(g,));();()});.(,(){ =g,=i;.=[];.= ;.=;.=;.=;.=(){(.).=(((.)));( i=0;i<..;i++).[i].();(i=0;i<.;i++)[i].()};=(,){ (.,)}; =[]; (){.=(){.= (++,);.= (++++,);.= (++,); .(.,.ID).(.,.ID).(.,.ID)};.=(){.= (++++,); .(.,.ID).(g,($){ +((,$)-1)+}).(g,).(g,(,,){ .().()+})};.=(){ .(g,($,$1){ [$1]})}}; _(){.=(){ +.};.=(){.+=+.};.=(){.=..(.,)};.=(){ =(.);( i=0;i<.;i++).([i])}}; (,){.id=..;.=.+.id;.=;.= (+.+,);(.,)};.=_;.= _;.=;.ID=(){ ()+ ()}; _(){.=(){ =(.);( i=0;i<.;i++){ =(.)?(.,[i]):[[i]];if().([i],,)}}};_.= _; (,,,){.=;.=[];.=;.=;.()};.=_;.= _;.ID=(,,,){if(&&!=&&.()&&!.()) ; ()+ (,,,)};+=; =g; (,){ (+.(.)++)}; =[]; _(){.=;.=(){ };.=0; (,,){ =((){{if(!.);.(,,);()}(){()}},10)};.=(){if(.==);( i=0;i<..;i++){ =.[i]; =.[.];if(){ =.?:.; =.(.); =.(?.:);.=;..=.;if(!).=.;if(.==){.(,.)}{.()}if()(,.,.);.[.]=}}};.=(){.=(.);( i=0;i<..;i++){ =.[i].;if(![.])[.]={:};[.].+=+.;if(.!=)[.].=.}}};_.= _; (,,){.=;.=[].(1,-1); =..(.);if().=([1]).(,);.=;.();(,)};.=_;.= _;.ID=(,,,){ (,,)};.=g;.=;.=+(,)+;[]=(,,,){( i=0;i<.;i++){ =[i].;( j=0;j<.;j++)if(([j],,))(,[j])}};[]=(,,,){( i=0;i<.;i++){ =([i]);if(&&(,,))(,)}};[]=(,,){=[];( i=0;i<.;i++)if(([i]))(,[i])};[]=(){!()};[]=(,){= (+,);(&&!.())=.; &&.(.())};.=(){ =;(,,(){...()});(,,(){...()})};.=(){ =;(,,(){...()})};.=(){ =;(,,(){...()});(,,(){...()});if(==.){...()}};(,,(){ =..; =.,i;(i in ).([i]);=..;=.;(i in )if(![i][0].(.)).([i])}); =[]; =g; (,,){=();.id=.;(.()){ :=;; :=;;:=++}=[];(, (,+(,)))};.ID=(,,,){ (,,)};..=(){ .+.id};={:(){ =[];( i in )if(i&&i!=)(,i); .().(g,)},:(){ .(,)},:(){ },:(,){ ++()},:(,){ +.()+++},:(,){ +.()+++}};.=; _(){.=(){ =[0]; =[1]; =[2];( i=0;i<.;i++).([i]);.[.id+.]=};.=(){ =[0]; =[1]; =[2];( i=0;i<.;i++).([i]); .[.id+.]}};.=(){.=;.={};.[]=};..= _; .(); .(); .(); (){ .(.,).(,)}},);.(,(){if(<5.5); =; =(.(.))?(,):; = ((.||)+,); (,){..=.(,)}; =gi;.(, (,,,,){=(); .()?+.(,).(,)++(||)++(||)++(||):});if(){ (){if(.(.)){ =.,=.;(,.);.=;.=;.=} ..=};.(,(){if(.==&&.!=);();(,,(){if(.==)()})})}});.(,(){ =;.(,);.(,); =.; $=()?:; =($); (){if(..!=){if(..==){..=+.+}..=}=}; =(); (){ ().(g,).(g,).(g,).(g,)}; (){if(..!=);if(!.()){();[.++]=;();();()}};.=0; (){.=...(5,-2); =(.)?:.;.();();();.()}; (){..=..;if(!()){ =+$+;..(,)}};(()); (){ =()?:;.[]=(,..)-.().-.};(()); (){if(!) ;if(..==||..==) ; .(.)}; (,){(){ : : 0; : : .-.; :(.-.)/2;:if(.()){ ((.-.)*()/100)}..=; .}};(()); (){if(..!=);();[.++]=;..=;..=;()};.=0; (,){(,);(,);if(!||..){if((..)==0)..++}}; (,){if(!&&.(..))..=..;if(..)..=((..)/100*.);if(){if(!..)}{..=..!=&&..==}..=;..=();if(..!=){..();..=..;..-=.;..()}if((.))..=..; if(!)..(,+$+)};(().(g,).(g,)); (){ =.,=; =(.)&&..;(=.){if(!&&..!=)=;+=.*(?-1:1)} };(()); (){( i=0;i<.;i++)([i]);(i=0;i<.;i++)([i],);=0}; ;(,,(){if(!)=(,10)})});=;if(.==)_(); (,,(){if(!&&.==)(_,0)})}(){();(+.)}{}}();',493,0,/./,String,95,'element`function`var`this`return`runtimeStyle`match`cssText`value`IE7`currentStyle`replace`from`for`length`width`filter`document`position`selector`test`new`Class`push`ie7_tmp`target`x5cs`filtered`parentElement`href`styleSheet`left`path`instance`PseudoElement`attribute`content`slice`fixed`toString`filterArgs`scopeName`count`style`clientWidth`ie7`tagName`Event`x5c`DynamicStyle`addEventHandler`url`type`true`right`recalc`instances`minWidth`else`eval`while`viewport`body`CSSFixes`appVersion`link`layoutParent`fixedWidth`auto`add`RegExp`fixes`styleSheets`load`false`fixWidth`arguments`src`addRecalc`input`AttributeSelector`selectors`subset`recalcs`nextSibling`isFixed`height`parseInt`documentElement`ie7Event`ALL`cssQuery`maxWidth`handler`timer`window`positionFixed`backgroundFixed`offsetLeft`offsetParent`case`quirksMode`x5cw`addModule`prototype`uniqueID`attributeTests`dynamicPseudoClasses`pseudoClasses`dynamicPseudoClass`attach`isHTML`fixRight`token`SIZES`pattern`alert`catch`complete`getScreenLeft`topFunction`appendChild`offsetWidth`HTMLFixes`MATCH`addFix`makePath`focus`compare`x5cd`object`pseudoElement`try`name`visited`getPixelWidth`boxSizing`getFixedWidth`all`elements`isElement`pseudoClass`cacheSelector`modules`script`setTimeout`screenLeft`removeChild`PERCENT`backgroundPositionX`DUMMY`hover`unregister`register`join`className`null`exec`display`classes`parse`getCSSText`getPixelLeft`wider`max`disabled`cssCache`node`Boolean`error`unHide`loaded`bottom`marginLeft`absolute`fixBackground`top`String`location`image`getString`active`PREFIX`escape`attributeSelectors`x2f`parentNode`adjacent`nextElement`ie7_anon`pseudoElements`inherit`encoded`isURL`ignore`HEADER`decode`split`encode`resizeWidth`NUMERIC`rect`min`hasLayout`outerHTML`apply`fixedElement`QUOTED`handlers`pop`strings`string`item`small`getPath`styles`pathname`array`httpRequest`finally`Error`readyState`foregroundPosition`backgroundPosition`nested`autoLeft`positionLeft`parseFloat`getOffsetLeft`setOffsetLeft`getBoundingClientRect`propertyName`backgroundLeft`canHaveChildren`backgroundImage`backgroundAttachment`tmpElement`none`background`fixImg`pngTest`FILTER`simpleSelector`delete`getAttribute`lang`compareTagName`ancestor`createElement`code`PIXEL`resizeRight`getPaddingWidth`getBorderWidth`box`submit`clicked`fix`select`useCache`base`large`inlineStyles`LINKS`description`resize`onresize`scrollLeft`pixelLeft`setExpression`default`switch`callee`expression`contains`Height`Width`Top`Left`leftFunction`img`event`NULL`addFilter`suffix`prefix`scale`png`define`navigator`Microsoft`CHILD`COMPLEX`remove`quote`ESCAPE`Function`break`ie7_`x5cb`class`ms_`previousElement`OBJECT`CONTENT`before`unicode`HEX`addTimer`firstChild`create`clearInterval`inline`ANCHOR`Parser`parser`removeTempElement`HEIGHT`getMarginWidth`AUTO`minHeight`marginRight`UNIT`toUpperCase`charAt`BUTTON`UNSUCCESSFUL`button`abbr`htmlFor`HTML`endTag`firstChildElement`continue`block`marginTop`fixMargins`removeEventHandler`attachEvent`key`getElementsByTagName`selectById`NAMESPACE`STREAM`STANDARD_SELECT`toStream`ASTERISK`IMPLIED_SELECTOR`reg`loadStyleSheet`imports`MEDIA`innerHTML`lastIndexOf`URL`fixUrls`scripts`RELATIVE`autoload`mimeType`search`message`onreadystatechange`static`screenTop`autoTop`positionTop`center`clientLeft`setOffsetTop`backgroundTop`protocol`onpropertychange`INPUT`zoom`crop`trans`IE7_PNG_SUFFIX`x00`x_bits`char`x5cnstatic`x_height`x5cn`x_width`javascript`gif`blank`userAgent`bSV1`sizingMethod`AlphaImageLoader`DXImageTransform`progid`toLowerCase`srcElement`onmouseup`activeElement`onblur`onfocus`onmousedown`onmouseout`onmouseover`child`first`children`scriptlet`text`htm`data`after`insertBefore`innerText`setInterval`specificity`x5cu`align`vertical`with`css2`fixHeight`Bottom`Right`paddingRight`paddingLeft`Math`model`onsubmit`reset`form`onclick`textarea`label`xhtml`org`www`http`namespaces`replaceChild`html4`previousSibling`nodeType`clip`border`padding`unquote`contentEditable`onbeforeunload`detachEvent`import`namespace`concat`Array`constructor`size`font`medium`list`float`relative`sizing`lastIndex`successfully`media`ball`bscreen`write`createStyleSheet`ie5`file`not`could`responseText`send`GET`open`XMLHTTP`ActiveXObject`margin`Document`XML`xml`unknown`typeof`CSS1Compat`compatMode`ie7_off`MSIE`ie7_debug`alpha`version`visible`visibility`fromCharCode`` (\\d\\.\\d)``^`\\.$`^[\\w\\.]+[^:]*$`(\\([\x27"]?)([\\w\\.]+[^:\\)]*[\x27"]?\\))`\\\\b|\\\\b|^$`-`(\\s*:\\s*(|))`\\s*:\\s*-`^[^>\\+~\\s]`[\\s>\\+~:@#\\.\\(\\)]|[^\\s>\\+~:@#\\.\\(\\)]+`\\|`([\\s>~\\,]|[^(]\\+|^)([\\.:#@])`(\\\\*[^\\*]*\\*+([^\\][^\\*]*\\*+)*\\)|(\x27[^\x27]*\x27)|("[^"]*")`@(|)[^;\\n]+[;\\n]|<!\\-\\-|\\-\\->`\\:`^\\s+|\\s*([\\{\\}\\+\\,>~\\s;])\\s*|\\s+$`\x27(\\d+)\x27`(\x27[^\x27]*\x27)|("[^"]*")` ="([^"]*)"`^(||)$`^\\d\\w*$`^\\d+%$`^\\d+(px)?$`\\b(|)-(|)\\s*:\\s*\\d`\\b(|)-\\s*:\\s*\\d`^|0cm$`^$````````>`(\\ba(\\.[\\w-]+)?)$`\\{[^\\}]*\\}`::`([^\\}\\s]*\\,[^\\{]*)(\\{\\d+\\})`\\{(\\d+)\\}`[+>~]`\\([a-fA-F\\d]+)`^\\(.*\\)$`([^}]*):(|)[^{]*\\{([^}]*)\\}`\\s*:\\s*([^;]*)(;|$)`([\\()[\\]?{}|*+])`=`\\\\b`%1`(-)?\\s*:([^(};]*)\\(([^\\)]+)\\)([^;}]*)``X`` 0.7.3 ()`\\n\\n``` `:{-:}:{-:}`*{:0}`=``/`.`` [1]: `-.js``<></>`$1`$2`` ` [2]: `([^{}]*)\\{([^}]*[^\\-])?`gi`-\\*:\\*-`\\*:\\*``:;$1`:`xx-,x-,,,,x-,xx-`,`xx-`((-)?\\*:\\*)(`|`)`$1*$2` *#`(` `*`#`.`(^|\\)`(\\|$)`:```\\([^)]*\\)`-`\x27`\\:```:;:0;:;:;:(0 0 0 0);:-9999`!`-`<:`/>`</`>``://.w3./1999/``,,`` `,````..`..=```.=`.=\x27`--`\\*:\\*\\[\\%]*``HR`\\*:\\*\\\\*[^%]``-``-``````````-`[^},\\]*([>+~][^:@,\\{]+|:(`)|\\.[\\-]+\\.[\\-.]+|@[@\\]+)`g`[^\\(]+[+~]|@\\+|:(||`)|\\.[\\-.]+`([^}]*):(`)([^{]*)`\\[([^`=\\]]+)([`]?=?)([^\\]]+)?\\]`{`}`\\`\\```.{-:;:}`\x27\\`0000``;`< = =\x27`-.`\x27 =100% =0 =/x->`+`@`-``^`i```````id`.id.(/\\+/g,\x27\x27)``..(/\\\\*\\+/g,\x27\x27)`.(\x27`\x27)`` ``\\$1`=`==`~=`/(^|\\)`(\\|$)/.(`|=`/^`(-|$)/.(```-`:..(=%1,=\x27\x27)`.`:\x27# 1\\# 1\\ []={0}\x27`-.`$`:``;:1;``,`````-`\\*:\\*`[\\\\-]*:[^};]*```(``Y`((.)+.`.)||0``````.+.`.``` [0]: '.split('\x60')));
-/* packed with http://dean.edwards.name/packer/ */
diff --git a/www/inc/styles/ie7/ie7-standard.js b/www/inc/styles/ie7/ie7-standard.js deleted file mode 100644 index 85608fb..0000000 --- a/www/inc/styles/ie7/ie7-standard.js +++ /dev/null @@ -1,2 +0,0 @@ -/* IE7 version 0.7.3 (alpha) 2004/09/18 */
-if(!window.IE7)new function(){try{window.IE7=this;var DUMMY=this.addModule=new Function;function unHide(){if(document.body)document.body.style.visibility="visible"};this.toString=function(){return "IE7 version 0.7.3 (alpha)"};var alert=(/ie7_debug/.test(location.search))?function(message){window.alert(IE7+"\n\n"+message)}:DUMMY;var appVersion=navigator.appVersion.match(/MSIE (\d\.\d)/)[1];if(/ie7_off/.test(location.search)||appVersion<5||!/^ms_/.test(document.documentElement.uniqueID))return unHide();var quirksMode=Boolean(document.compatMode!="CSS1Compat");var isHTML=(typeof document.mimeType=="unknown")?!/\.xml$/i.test(location.pathname):Boolean(document.mimeType!="XML Document");var LINKS=":link{ie7-link:link}:visited{ie7-link:visited}";var HEADER=LINKS;if(!isHTML)HEADER+="*{margin:0}";var HTMLFixes;var documentElement=document.documentElement;var modules={};this.addModule=function(name,script,autoload){if(!modules)return;if(loaded)eval("script="+String(script));if(autoload){script();script=DUMMY}modules[name]=script};var RELATIVE=/^[\w\.]+[^:]*$/;function makePath(href,path){if(RELATIVE.test(href))href=(path||"")+href;return href};function getPath(href,path){href=makePath(href,path);return href.slice(0,href.lastIndexOf("/")+1)};var path=getPath(document.scripts[document.scripts.length-1].src);var httpRequest=new ActiveXObject("Microsoft.XMLHTTP");function load(href,path){try{href=makePath(href,path);httpRequest.open("GET",href,false);httpRequest.send();return httpRequest.responseText}catch(ignore){alert("Error [1]: could not load file "+href);return ""}};var push=function(array,item){return array.push(item)};var pop=function(array){return array.pop()};if(appVersion<5.5)eval(load("ie7-ie5.js",path));if(document.readyState=="complete"||!isHTML)document.createStyleSheet();else document.write("<style></style>");this.styleSheet=document.styleSheets[document.styleSheets.length-1];this.styleSheet.cssText=LINKS;this.styleSheet.ie7=true;var cssText={};function loadStyleSheet(styleSheet,path){var url=makePath(styleSheet.href,path);if(cssText[url])return "";cssText[url]=(styleSheet.disabled)?"":fixUrls(getCSSText(styleSheet,path),getPath(styleSheet.href,path));return cssText[url]};var getCSSText=function(styleSheet){return styleSheet.cssText};var URL=/(url\(['"]?)([\w\.]+[^:\)]*['"]?\))/gi;function fixUrls(cssText,pathname){return cssText.replace(URL,"$1"+pathname.slice(0,pathname.lastIndexOf("/")+1)+"$2")};this.recalcs=[];this.parse=DUMMY;var complete=false;function _load(){try{complete=true;var MEDIA=/\bscreen\b|\ball\b|^$/i;var styleSheets=document.styleSheets;var inlineStyles=[];var styles=document.getElementsByTagName("style");for(var i=styles.length-1;i>=0;i--){push(inlineStyles,/ie7-link/.test(styles[i].innerHTML)?"":styles[i].innerHTML)}function getCSSText(styleSheet,path){var cssText="";if(MEDIA.test(styleSheet.media)){for(var i=0;i<styleSheet.imports.length;i++){cssText+=arguments.callee(styleSheet.imports[i],getPath(styleSheet.href,path))}cssText+=((styleSheet.href)?loadStyleSheet(styleSheet,path):pop(inlineStyles))}return cssText};IE7.cssText="";for(i=0;i<styleSheets.length;i++)IE7.cssText+=getCSSText(styleSheets[i],"");IE7.cssText=encode(IE7.cssText);for(i in modules)modules[i]();delete modules;if(HTMLFixes)HTMLFixes.apply();CSSFixes.apply();IE7.parse();IE7.styleSheet.cssText=HEADER+decode(IE7.cssText);for(i=0;i<styleSheets.length;i++){if(!styleSheets[i].disabled&&!styleSheets[i].ie7)styleSheets[i].cssText=""}IE7.recalc();alert("loaded successfully")}catch(error){alert("Error [2]: "+error.description)}finally{unHide()}};this.recalc=function(){CSSFixes.recalc();for(var i=0;i<this.recalcs.length;i++)this.recalcs[i]()};var CSSFixes=new function(){var fixes=[];this.addFix=function(){push(fixes,arguments)};var recalcs=[];this.addRecalc=function(pattern,fix){var reg=new RegExp("([^{}]*)\x5c{([^}]*[^\x5cw-])?"+pattern,"gi");var cssText=IE7.cssText;pattern=[];while(match=reg.exec(cssText)){push(pattern,match[1]);if(appVersion<5.5)cssText=cssText.slice(match.lastIndex)}if(pattern.length){pattern=pattern.toString();push(recalcs,arguments)}};this.apply=function(){for(var i=0;i<fixes.length;i++){IE7.cssText=IE7.cssText.replace(fixes[i][0],fixes[i][1])}this.addRecalc("box-sizing\x5cs*:\x5cs*content-box",boxSizing);this.addRecalc("position\x5cs*:\x5cs*absolute",function(element){if(element.offsetParent.currentStyle.position=="relative")boxSizing(element.offsetParent)})};this.recalc=function(){for(var i=0;i<recalcs.length;i++){var elements=cssQuery(recalcs[i][0]);for(var j=0;j<elements.length;j++)recalcs[i][1](elements[j])}};this.addFix(/(float\s*:\s*(left|right))/gi,"display:inline;$1");if(appVersion<6)this.addFix(/display\s*:\s*list-item/gi,"display:block");if(quirksMode){var SIZES="xx-small,x-small,small,medium,large,x-large,xx-large".split(",");for(var i=0;i<SIZES.length;i++)SIZES[SIZES[i]]=SIZES[i-1]||"xx-small";function replace($,$1,$2,$3){return $1+SIZES[$3]};this.addFix(new RegExp("(font(-size)?\x5cs*:\x5cs*)("+SIZES.join("|")+")","gi"),replace)}};var STANDARD_SELECT=/^[^>\+~\s]/;var STREAM=/[\s>\+~:@#\.\(\)]|[^\s>\+~:@#\.\(\)]+/g;var NAMESPACE=/\|/;var IMPLIED_SELECTOR=/([\s>~\,]|[^(]\+|^)([\.:#@])/g;var ASTERISK="$1*$2";var cssCache={};function cssQuery(selector,from){var useCache=!from;var base=(from)?(from.constructor==Array)?from:[from]:[document];var selectors=selector.replace(IMPLIED_SELECTOR,ASTERISK).split(",");var match=[];for(var i=0;i<selectors.length;i++){selector=toStream(selectors[i]);if(selector.slice(0,3).join("")==" *#"){selector=selector.slice(2);from=selectById(base,selector[1])}else from=base;var j=0,token,filter,filterArgs,cacheSelector="";while(j<selector.length){token=selector[j++];filter=selector[j++];cacheSelector+=token+filter;filterArgs="";if(selector[j]=="("){while(selector[j++]!=")")filterArgs+=selector[j];filterArgs=filterArgs.slice(0,-1);cacheSelector+="("+filterArgs+")"}from=(useCache&&cssCache[cacheSelector])?cssCache[cacheSelector]:select(from,token,filter,filterArgs);if(useCache)cssCache[cacheSelector]=from}match=match.concat(from)}return match};function toStream(selector){if(STANDARD_SELECT.test(selector))selector=" "+selector;return selector.match(STREAM)};function select(from,token,filter,filterArgs){var scopeName="";if(NAMESPACE.test(filter)){filter=filter.split("|");scopeName=filter[0];filter=filter[1]}var filtered=[];if(selectors[token])selectors[token](filtered,from,filter,scopeName||filterArgs);return filtered};function selectById(from,id){var filtered=[],i,j;for(i=0;i<from.length;i++){var match=from[i].all.item(id);if(match){if(match.length==null)push(filtered,match);else for(j=0;j<match.length;j++)push(filtered,match[j])}}return filtered};var selectors={" ":function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var subset=(filter=="*"&&from[i].all)?from[i].all:from[i].getElementsByTagName(filter);for(var j=0;j<subset.length;j++){if(isElement(subset[j])&&(!scopeName||subset[j].scopeName==scopeName))push(filtered,subset[j])}}},"#":function(filtered,from,filter){for(var i=0;i<from.length;i++)if(from[i].id==filter)push(filtered,from[i])},".":function(filtered,from,filter){filter=new RegExp("(^|\x5cs)"+filter+"(\x5cs|$)");for(var i=0;i<from.length;i++)if(filter.test(from[i].className))push(filtered,from[i])},":":function(filtered,from,filter,filterArgs){filter=pseudoClasses[filter];if(filter)for(var i=0;i<from.length;i++)if(filter(from[i],filterArgs))push(filtered,from[i])}};var attributeTests="";var pseudoClasses={toString:function(){var toString=[];for(var pseudoClass in this){if(pseudoClass!="link"&&pseudoClass!="visited"){if(this[pseudoClass].length>1)pseudoClass+="\x5c([^)]*\x5c)";push(toString,pseudoClass)}}return toString.join("|")},"link":function(element){return Boolean(element.currentStyle["ie7-link"]=="link")},"visited":function(element){return Boolean(element.currentStyle["ie7-link"]=="visited")}};var dynamicPseudoClasses={toString:pseudoClasses.toString};function compareTagName(element,tagName,scopeName){if(scopeName&&element.scopeName!=scopeName)return false;return(tagName=="*")?isElement(element):(isHTML)?(element.tagName==tagName.toUpperCase()):(element.tagName==tagName)};var strings=[];function getString(string){return QUOTED.test(string)?strings[string.slice(1,-1)]:string};var encode=function(cssText){return cssText.replace(/(\x2f\*[^\*]*\*+([^\x2f][^\*]*\*+)*\x2f)|('[^']*')|("[^"]*")/g,function(match){return(match.charAt(0)=="/")?"":"'"+(push(strings,match.slice(1,-1))-1)+"'"}).replace(/@(namespace|import)[^;\n]+[;\n]|<!\-\-|\-\->/g,"").replace(/\x5c:/g,"|").replace(/^\s+|\s*([\{\}\+\,>~\s;])\s*|\s+$/g,"$1")};function decode(cssText){return cssText.replace(/\|/g,"\x5c:").replace(/'(\d+)'/g,function(match,key){return strings[key]})};var handlers=[];function addEventHandler(element,type,handler){element.attachEvent(type,handler);push(handlers,arguments)};function removeEventHandler(element,type,handler){try{element.detachEvent(type,handler)}catch(ignore){}};window.attachEvent("onbeforeunload",function(){while(handlers.length){var handler=pop(handlers);removeEventHandler(handler[0],handler[1],handler[2])}});var hasLayout=(appVersion<6)?function(element){return element.clientWidth}:function(element){return element.currentStyle.hasLayout};function boxSizing(element){if(!hasLayout(element)){element.contentEditable=false;fixMargins(firstChildElement(element))}};function fixMargins(element){while(element){element.runtimeStyle.marginTop=element.currentStyle.marginTop;element=nextElement(element)}};var QUOTED=/('[^']*')|("[^"]*")/;function quote(value){return(QUOTED.test(value))?value:"'"+value+"'"};function unquote(value){return(QUOTED.test(value))?value.slice(1,-1):value};function tmpElement(tagName){var element=document.createElement(tagName||"object");element.style.cssText="position:absolute;padding:0;display:block;border:none;clip:rect(0 0 0 0);left:-9999";return element};function isElement(node){return Boolean(node&&node.nodeType==1&&node.tagName!="!"&&!node.ie7_anon)};function previousElement(element){while(element&&(element=element.previousSibling)&&!isElement(element))continue;return element};function nextElement(element){while(element&&(element=element.nextSibling)&&!isElement(element))continue;return element};function firstChildElement(element){element=element.firstChild;return(isElement(element))?element:nextElement(element)};var loaded=false;IE7.addModule("ie7-html4",function(){if(isHTML)HTMLFixes=new function(){var fixes=[];function fix(element){var fixedElement=document.createElement("<HTML:"+element.outerHTML.slice(1));if(element.outerHTML.slice(-2)!="/>"){var endTag="</"+element.tagName+">",nextSibling;while((nextSibling=element.nextSibling)&&nextSibling.outerHTML!=endTag){element.parentNode.removeChild(nextSibling);fixedElement.appendChild(nextSibling)}if(nextSibling)element.parentNode.removeChild(nextSibling)}element.parentNode.replaceChild(fixedElement,element);return fixedElement};this.add=function(){push(fixes,arguments)};this.apply=function(){try{if(appVersion>5)document.namespaces.add("HTML","http://www.w3.org/1999/xhtml")}catch(ignore){}finally{for(var i=0;i<fixes.length;i++){var elements=cssQuery(fixes[i][0]);for(var j=0;j<elements.length;j++)fixes[i][1](elements[j])}}};this.add("label",function(element){if(!element.htmlFor){var input=cssQuery("input,select,textarea",element)[0];if(input){if(!input.id)input.id=input.uniqueID;element.htmlFor=input.id}}});this.add("abbr",function(element){fix(element);delete cssCache[" abbr"]});this.add("button,input",function(element){if(element.tagName=="BUTTON"){var match=element.outerHTML.match(/ value="([^"]*)"/i);element.runtimeStyle.value=(match)?match[1]:""}if(element.type=="submit"){addEventHandler(element,"onclick",function(){element.runtimeStyle.clicked=true;setTimeout("document.all."+element.uniqueID+".runtimeStyle.clicked=false",1)})}});this.add("form",function(element){var UNSUCCESSFUL=/^(submit|reset|button)$/;addEventHandler(element,"onsubmit",function(){for(var i=0;i<element.length;i++){if(UNSUCCESSFUL.test(element[i].type)&&!element[i].disabled&&!element[i].runtimeStyle.clicked){element[i].disabled=true;setTimeout("document.all."+element[i].uniqueID+".disabled=false",1)}else if(element[i].tagName=="BUTTON"&&element[i].type=="submit"){setTimeout("document.all."+element[i].uniqueID+".value='"+element[i].value+"'",1);element[i].value=element[i].runtimeStyle.value}}})})}},true);IE7.addModule("ie7-box-model",function(){var NUMERIC="\x5cs*:\x5cs*\x5cd[\x5cw%]*",UNIT=/^\d\w*$/,PERCENT=/^\d+%$/,PIXEL=/^\d+(px)?$/;var MATCH=(appVersion<6)?/\b(min|max)-(width|height)\s*:\s*\d/gi:/\b(min|max)-width\s*:\s*\d/gi;var AUTO=(appVersion<5.5)?/^auto|0cm$/:/^auto$/;var ie7_tmp=tmpElement();push(IE7.recalcs,function removeTempElement(){if(ie7_tmp.parentElement)ie7_tmp.parentElement.removeChild(ie7_tmp)});CSSFixes.addFix(MATCH,function(match){return match.slice(0,3)+match.charAt(4).toUpperCase()+match.slice(5)});var viewport=(quirksMode)?document.body:documentElement;function isFixed(element){return element.style.position=="fixed"||element.currentStyle.position=="fixed"};function layoutParent(element){var layoutParent=element.offsetParent;while(layoutParent&&!hasLayout(layoutParent))layoutParent=layoutParent.offsetParent;if(!layoutParent||isFixed(element))layoutParent=viewport;return layoutParent};function fixWidth(HEIGHT){fixWidth=function(element,value){if(!element.runtimeStyle.fixedWidth&&(!isHTML||element.tagName!="HR")){if(!value)value=element.currentStyle.width;element.runtimeStyle.fixedWidth=(UNIT.test(value))?Math.max(0,getFixedWidth(element,value)):value;element.runtimeStyle.width=element.runtimeStyle.fixedWidth;boxSizing(element)}};if(quirksMode)CSSFixes.addRecalc("width\x5cs*:\x5cs*\x5cd\x5cw*[^%]",fixWidth);var getFixedWidth=(quirksMode)?function(element,value){return getPixelWidth(element,value)+getBorderWidth(element)+getPaddingWidth(element)}:function(element,value){return getPixelWidth(element,value)};function getBorderWidth(element){return element.offsetWidth-element.clientWidth};function getPaddingWidth(element){return getPixelWidth(element,element.currentStyle.paddingLeft)+getPixelWidth(element,element.currentStyle.paddingRight)};function getMarginWidth(element){return((element.currentStyle.marginLeft=="auto")?0:getPixelLeft(element,element.currentStyle.marginLeft))+((element.currentStyle.marginRight=="auto")?0:getPixelLeft(element,element.currentStyle.marginRight))};function minWidth(element){minWidth[minWidth.count++]=element;if(element.currentStyle.minHeight=="auto")element.runtimeStyle.minHeight=0;fixWidth(element);boxSizing(element);resizeWidth(element)};minWidth.count=0;CSSFixes.addRecalc("min-width"+NUMERIC,minWidth);eval(String(minWidth).replace(/min/g,"max"));maxWidth.count=0;CSSFixes.addRecalc("max-width"+NUMERIC,maxWidth);function resizeWidth(element){var rect=element.getBoundingClientRect();var width=rect.right-rect.left;if(element.currentStyle.maxWidth&&width>=getFixedWidth(element,element.currentStyle.maxWidth))element.runtimeStyle.width=getFixedWidth(element,element.currentStyle.maxWidth);else if(element.currentStyle.minWidth&&width<=getFixedWidth(element,element.currentStyle.minWidth))element.runtimeStyle.width=getFixedWidth(element,element.currentStyle.minWidth);else element.runtimeStyle.width=element.runtimeStyle.fixedWidth};function fixRight(element){if((element.currentStyle.position=="absolute"||element.currentStyle.position=="fixed")&&element.currentStyle.left!="auto"&&element.currentStyle.right!="auto"&&AUTO.test(element.currentStyle.width)){fixRight[fixRight.count++]=element;boxSizing(element);resizeRight(element)}};fixRight.count=0;CSSFixes.addRecalc("right"+NUMERIC,fixRight);function resizeRight(element){element.runtimeStyle.width="";var parentElement=layoutParent(element);var left=(element.runtimeStyle.screenLeft)?element.getBoundingClientRect().left-2:getPixelLeft(element,element.currentStyle.left);var width=parentElement.clientWidth-getPixelLeft(element,element.currentStyle.right)-left-getMarginWidth(element);if(!quirksMode)width-=getBorderWidth(element)+getPaddingWidth(element);if(width<0)width=0;if(isFixed(element)||HEIGHT||element.offsetWidth<width){element.runtimeStyle.fixedWidth=width;element.runtimeStyle.width=width}};var clientWidth=documentElement.clientWidth;addEventHandler(window,"onresize",function(){var i,wider=(clientWidth<documentElement.clientWidth);clientWidth=documentElement.clientWidth;for(i=0;i<minWidth.count;i++){var element=minWidth[i];var fixedWidth=(element.runtimeStyle.width==element.currentStyle.minWidth);if(wider&&fixedWidth)element.runtimeStyle.width="";if(wider==fixedWidth)resizeWidth(element)}for(i=0;i<maxWidth.count;i++){var element=maxWidth[i];var fixedWidth=(element.runtimeStyle.width==element.currentStyle.maxWidth);if(!wider&&fixedWidth)element.runtimeStyle.width="";if(wider!=fixedWidth)resizeWidth(element)}for(i=0;i<fixRight.count;i++)resizeRight(fixRight[i]);removeTempElement()});function getPixelWidth(element,value){if(PIXEL.test(value))return parseInt(value);if(PERCENT.test(value))return parseInt(parseFloat(value)/100*layoutParent(element).clientWidth);var parentElement=(element.canHaveChildren)?element:element.parentElement;parentElement.appendChild(ie7_tmp);ie7_tmp.style.width=value;return ie7_tmp.offsetWidth};function getPixelLeft(element,value){if(parseInt(value)>0)return getPixelWidth(element,value);if(PIXEL.test(value))return parseInt(value);element.parentElement.appendChild(ie7_tmp);ie7_tmp.style.left=value;return ie7_tmp.offsetLeft}};eval(String(fixWidth).replace(/Width/g,"Height").replace(/width/g,"height").replace(/Left/g,"Top").replace(/left/g,"top").replace(/Right/g,"Bottom").replace(/right/g,"bottom"));fixWidth();fixHeight(true)});IE7.addModule("ie7-css2",function(){var CHILD=/>/g,ANCHOR=/(\ba(\.[\w-]+)?)$/i;IE7.classes=[];IE7.parser=new Parser;IE7.Class=Class;IE7.DynamicStyle=DynamicStyle;IE7.PseudoElement=PseudoElement;IE7.parse=function(){with(this.parser)this.cssText=decode(parse(encode(this.cssText)));for(var i=0;i<IE7.classes.length;i++)IE7.classes[i].exec();for(i=0;i<pseudoElements.length;i++)pseudoElements[i].create()};getCSSText=function(styleSheet,path){return load(styleSheet.href,path)};var encoded=[];function Parser(){this.parse=function(cssText){Class.ALL=new RegExp("[^},\x5cs]*([>+~][^:@,\x5cs{]+|:("+pseudoClasses+")|\x5c.[\x5cw-]+\x5c.[\x5cw-.]+|@[@\x5cd]+)","g");Class.COMPLEX=new RegExp("[^\x5cs(]+[+~]|@\x5cd+|:(link|visited|"+pseudoClasses+"|"+dynamicPseudoClasses+")|\x5c.[\x5cw-.]+","g");DynamicStyle.ALL=new RegExp("([^}]*):("+dynamicPseudoClasses+")([^{]*)","g");return cssText.replace(PseudoElement.ALL,PseudoElement.ID).replace(DynamicStyle.ALL,DynamicStyle.ID).replace(Class.ALL,Class.ID)};this.encode=function(cssText){AttributeSelector.ALL=new RegExp("\x5c[([^"+attributeTests+"=\x5c]]+)(["+attributeTests+"]?=?)([^\x5c]]+)?\x5c]","g");return cssText.replace(AttributeSelector.ALL,AttributeSelector.ID).replace(/\{[^\}]*\}/g,function($){return "{"+(push(encoded,$)-1)+"}"}).replace(/::/g,":").replace(/([^\}\s]*\,[^\{]*)(\{\d+\})/g,function(match,left,right){return left.split(",").join(right)+right})};this.decode=function(cssText){return cssText.replace(/\{(\d+)\}/g,function($,$1){return encoded[$1]})}};function _Class(){this.toString=function(){return "."+this.name};this.add=function(element){element.className+=" "+this.name};this.remove=function(element){element.className=element.className.replace(this.MATCH,"")};this.exec=function(){var match=cssQuery(this.selector);for(var i=0;i<match.length;i++)this.add(match[i])}};function Class(selector,cssText){this.id=IE7.classes.length;this.name=Class.PREFIX+this.id;this.selector=selector;this.MATCH=new RegExp("\x5cs"+this.name+"\x5cb","g");push(IE7.classes,this)};Class.ancestor=_Class;Class.prototype=new _Class;Class.PREFIX="ie7_";Class.ID=function(match){return simpleSelector(match)+new Class(match)};function _DynamicStyle(){this.exec=function(){var match=cssQuery(this.attach);for(var i=0;i<match.length;i++){var target=(this.target)?cssQuery(this.target,match[i]):[match[i]];if(target)this.dynamicPseudoClass(match[i],target,this)}}};_DynamicStyle.prototype=new _Class;function DynamicStyle(selector,attach,dynamicPseudoClass,target){this.attach=attach;this.dynamicPseudoClass=dynamicPseudoClasses[dynamicPseudoClass];this.target=target;this.inherit=Class;this.inherit(selector)};DynamicStyle.ancestor=_DynamicStyle;DynamicStyle.prototype=new _DynamicStyle;DynamicStyle.ID=function(match,attach,dynamicPseudoClass,target){if(isHTML&&dynamicPseudoClass!="focus"&&ANCHOR.test(attach)&&!/[+>~]/.test(target))return match;return simpleSelector(match)+new DynamicStyle(match,attach,dynamicPseudoClass,target)};HEADER+=".ie7_anon{vertical-align:top;display:inline}";var HEX=/\x5c([a-fA-F\d]+)/g;function unicode(match,code){return eval("'\x5cu"+"0000".slice(code.length)+code+"'")};var pseudoElements=[];function _PseudoElement(){this.content=null;this.toString=function(){return ""};this.specificity=0;function addTimer(object,content,cssText){var timer=setInterval(function(){try{if(!object.load)return;object.load(object,content,cssText);clearInterval(timer)}catch(ignore){clearInterval(timer)}},10)};this.create=function(){if(this.content==null)return;for(var i=0;i<this.match.length;i++){var target=this.match[i];var pseudoElement=target.runtimeStyle[this.position];if(pseudoElement){var parentElement=target.canHaveChildren?target:target.parentElement;var isURL=/^url\(.*\)$/.test(this.content);var element=document.createElement(isURL?PseudoElement.OBJECT:"!");element.ie7_anon=true;element.runtimeStyle.cssText=pseudoElement.cssText;if(!isURL)element.innerText=pseudoElement.content;if(this.position=="before"){parentElement.insertBefore(element,parentElement.firstChild)}else{parentElement.appendChild(element)}if(isURL)addTimer(element,pseudoElement.content,pseudoElement.cssText);target.runtimeStyle[this.position]=null}}};this.exec=function(){this.match=cssQuery(this.selector);for(var i=0;i<this.match.length;i++){var runtimeStyle=this.match[i].runtimeStyle;if(!runtimeStyle[this.position])runtimeStyle[this.position]={cssText:""};runtimeStyle[this.position].cssText+=";"+this.cssText;if(this.content!=null)runtimeStyle[this.position].content=this.content}}};_PseudoElement.prototype=new _Class;function PseudoElement(selector,position,cssText){this.position=position;this.cssText=encoded[cssText].slice(1,-1);var content=this.cssText.match(PseudoElement.CONTENT);if(content)this.content=getString(content[1]).replace(HEX,unicode);this.inherit=Class;this.inherit(selector);push(pseudoElements,this)};PseudoElement.ancestor=_PseudoElement;PseudoElement.prototype=new _PseudoElement;PseudoElement.ID=function(match,selector,position,cssText){return new PseudoElement(selector,position,cssText)};PseudoElement.ALL=/([^}]*):(before|after)[^{]*\{([^}]*)\}/g;PseudoElement.CONTENT=/content\s*:\s*([^;]*)(;|$)/;PseudoElement.OBJECT="<object class=ie7_anon data='"+makePath("ie7-content.htm",path)+"' width=100% height=0 type=text/x-scriptlet>";selectors[">"]=function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var subset=from[i].children;for(var j=0;j<subset.length;j++)if(compareTagName(subset[j],filter,scopeName))push(filtered,subset[j])}};selectors["+"]=function(filtered,from,filter,scopeName){for(var i=0;i<from.length;i++){var adjacent=nextElement(from[i]);if(adjacent&&compareTagName(adjacent,filter,scopeName))push(filtered,adjacent)}};selectors["@"]=function(filtered,from,filter){filter=attributeSelectors[filter];for(var i=0;i<from.length;i++)if(filter(from[i]))push(filtered,from[i])};pseudoClasses["first-child"]=function(element){return!previousElement(element)};pseudoClasses["lang"]=function(element,filterArgs){filterArgs=new RegExp("^"+filterArgs,"i");while(element&&!element.getAttribute("lang"))element=element.parentNode;return element&&filterArgs.test(element.getAttribute("lang"))};dynamicPseudoClasses.hover=function(element){var instance=arguments;addEventHandler(element,"onmouseover",function(){IE7.Event.hover.register(instance)});addEventHandler(element,"onmouseout",function(){IE7.Event.hover.unregister(instance)})};dynamicPseudoClasses.active=function(element){var instance=arguments;addEventHandler(element,"onmousedown",function(){IE7.Event.active.register(instance)})};dynamicPseudoClasses.focus=function(element){var instance=arguments;addEventHandler(element,"onfocus",function(){IE7.Event.focus.register(instance)});addEventHandler(element,"onblur",function(){IE7.Event.focus.unregister(instance)});if(element==document.activeElement){IE7.Event.focus.register(instance)}};addEventHandler(document,"onmouseup",function(){var ie7Event=IE7.Event.active;var instances=ie7Event.instances,i;for(i in instances)ie7Event.unregister(instances[i]);ie7Event=IE7.Event.hover;instances=ie7Event.instances;for(i in instances)if(!instances[i][0].contains(event.srcElement))ie7Event.unregister(instances[i])});var attributeSelectors=[];var ESCAPE=/([\x2f()[\]?{}|*+])/g;function AttributeSelector(attribute,compare,value){value=getString(value);this.id=attributeSelectors.length;switch(attribute.toLowerCase()){case "id":attribute="element.id.replace(/ms_\x5cd+/g,'')";break;case "class":attribute="element.className.replace(/\x5cb\x5cs*ie7_\x5cd+/g,'')";break;default:attribute="element.getAttribute('"+attribute+"')"}compare=attributeTests[compare];push(attributeSelectors,new Function("element","return "+compare(attribute,value)))};AttributeSelector.ID=function(match,attribute,compare,value){return new AttributeSelector(attribute,compare,value)};AttributeSelector.prototype.toString=function(){return AttributeSelector.PREFIX+this.id};attributeTests={toString:function(){var toString=[];for(var i in this)if(i&&i!="escape")push(toString,i);return toString.join("").replace(/=/g,"")},escape:function(value){return value.replace(ESCAPE,"\x5c$1")},"":function(attribute){return attribute},"=":function(attribute,value){return attribute+"=="+quote(value)},"~=":function(attribute,value){return "/(^|\x5cs)"+attributeTests.escape(value)+"(\x5cs|$)/.test("+attribute+")"},"|=":function(attribute,value){return "/^"+attributeTests.escape(value)+"(-|$)/.test("+attribute+")"}};AttributeSelector.PREFIX="@";function _ie7Event(){this.register=function(instance){var element=instance[0];var target=instance[1];var Class=instance[2];for(var i=0;i<target.length;i++)Class.add(target[i]);this.instances[Class.id+element.uniqueID]=instance};this.unregister=function(instance){var element=instance[0];var target=instance[1];var Class=instance[2];for(var i=0;i<target.length;i++)Class.remove(target[i]);delete this.instances[Class.id+element.uniqueID]}};IE7.Event=function(type){this.type=type;this.instances={};IE7.Event[type]=this};IE7.Event.prototype=new _ie7Event;new IE7.Event("hover");new IE7.Event("active");new IE7.Event("focus");function simpleSelector(selector){return selector.replace(Class.COMPLEX,"").replace(CHILD," ")}},true);IE7.addModule("ie7-png",function(){if(appVersion<5.5)return;var FILTER="progid:DXImageTransform.Microsoft.AlphaImageLoader(src=%1,sizingMethod='scale')";var NULL=(/\bSV1\b/.test(navigator.userAgent))?makePath("blank.gif",path):"javascript:'#define x_width 1\x5cn#define x_height 1\x5cnstatic char x_bits[]={0x00}'";var pngTest=new RegExp((window.IE7_PNG_SUFFIX||"-trans.png")+"$","i");function addFilter(element,src){element.runtimeStyle.filter=FILTER.replace(/%1/,src)};var MATCH=/background(-image)?\s*:([^(};]*)url\(([^\)]+)\)([^;}]*)/gi;CSSFixes.addFix(MATCH,function replace(match,image,prefix,url,suffix){url=getString(url);return pngTest.test(url)?"filter:"+FILTER.replace(/scale/,"crop").replace(/%1/,url)+";zoom:1;background"+(image||"")+":"+(prefix||"")+"none"+(suffix||""):match});if(HTMLFixes){function fixImg(element){if(pngTest.test(element.src)){var width=element.width,height=element.height;addFilter(element,element.src);element.src=NULL;element.width=width;element.height=height}else element.runtimeStyle.filter=""};HTMLFixes.add("img,input",function(element){if(element.tagName=="INPUT"&&element.type!="image")return;fixImg(element);addEventHandler(element,"onpropertychange",function(){if(event.propertyName=="src")fixImg(element)})})}});IE7.addModule("ie7-fixed",function(){var PERCENT=/^\d+%$/;CSSFixes.addRecalc("position\x5cs*:\x5cs*fixed",positionFixed);CSSFixes.addRecalc("background[\x5cw\x5cs-]*:[^};]*fixed",backgroundFixed);var body=document.body;var viewport$=(quirksMode)?"body":"documentElement";var viewport=eval(viewport$);function fixBackground(){if(body.currentStyle.backgroundAttachment!="fixed"){if(body.currentStyle.backgroundImage=="none"){body.runtimeStyle.backgroundImage="url("+location.protocol+")"}body.runtimeStyle.backgroundAttachment="fixed"}fixBackground=DUMMY};var ie7_tmp=tmpElement("img");function topFunction(leftFunction){return String(leftFunction).replace(/Left/g,"Top").replace(/left/g,"top").replace(/Width/g,"Height").replace(/X/g,"Y")};function backgroundFixed(element){if(element.currentStyle.backgroundAttachment!="fixed")return;if(!element.contains(body)){fixBackground();backgroundFixed[backgroundFixed.count++]=element;backgroundLeft(element);backgroundTop(element);backgroundPosition(element)}};backgroundFixed.count=0;function backgroundPosition(element){ie7_tmp.src=element.currentStyle.backgroundImage.slice(5,-2);var parentElement=(element.canHaveChildren)?element:element.parentElement;parentElement.appendChild(ie7_tmp);setOffsetLeft(element);setOffsetTop(element);parentElement.removeChild(ie7_tmp)};function backgroundLeft(element){element.style.backgroundPositionX=element.currentStyle.backgroundPositionX;if(!isFixed(element)){var expression="(parseInt(runtimeStyle.offsetLeft)+document."+viewport$+".scrollLeft)||0";element.runtimeStyle.setExpression("backgroundPositionX",expression)}};eval(topFunction(backgroundLeft));function setOffsetLeft(element){var propertyName=isFixed(element)?"backgroundPositionX":"offsetLeft";element.runtimeStyle[propertyName]=getOffsetLeft(element,element.style.backgroundPositionX)-element.getBoundingClientRect().left-element.clientLeft};eval(topFunction(setOffsetLeft));function isFixed(element){if(!element)return false;if(element.style.position=="fixed"||element.currentStyle.position=="fixed")return true;return arguments.callee(element.parentElement)};function getOffsetLeft(element,position){switch(position){case "left":case "top":return 0;case "right":case "bottom":return viewport.clientWidth-ie7_tmp.offsetWidth;case "center":return(viewport.clientWidth-ie7_tmp.offsetWidth)/2;default:if(PERCENT.test(position)){return parseInt((viewport.clientWidth-ie7_tmp.offsetWidth)*parseFloat(position)/100)}ie7_tmp.style.left=position;return ie7_tmp.offsetLeft}};eval(topFunction(getOffsetLeft));function positionFixed(element){if(element.currentStyle.position!="fixed")return;fixBackground();positionFixed[positionFixed.count++]=element;element.style.position="fixed";element.runtimeStyle.position="absolute";foregroundPosition(element)};positionFixed.count=0;function foregroundPosition(element,recalc){positionLeft(element,recalc);positionTop(element,recalc);if(!recalc||element.runtimeStyle.autoTop){if(parseInt(element.currentStyle.bottom)==0)element.runtimeStyle.screenTop++}};function positionLeft(element,recalc){if(!recalc&&PERCENT.test(element.currentStyle.width))element.runtimeStyle.fixWidth=element.currentStyle.width;if(element.runtimeStyle.fixWidth)element.runtimeStyle.width=parseInt(parseFloat(element.runtimeStyle.fixWidth)/100*viewport.clientWidth);if(recalc){if(!element.runtimeStyle.autoLeft)return}else{element.runtimeStyle.autoLeft=element.currentStyle.right!="auto"&&element.currentStyle.left=="auto"}element.runtimeStyle.left="";element.runtimeStyle.screenLeft=getScreenLeft(element);if(element.currentStyle.marginLeft!="auto"){element.parentElement.appendChild(ie7_tmp);ie7_tmp.style.left=element.currentStyle.marginLeft;element.runtimeStyle.screenLeft-=ie7_tmp.offsetLeft;element.parentElement.removeChild(ie7_tmp)}if(isFixed(element.offsetParent))element.runtimeStyle.pixelLeft=element.runtimeStyle.screenLeft;else if(!recalc)element.runtimeStyle.setExpression("pixelLeft","runtimeStyle.screenLeft+document."+viewport$+".scrollLeft")};eval(topFunction(positionLeft).replace(/right/g,"bottom").replace(/width/g,"height"));function getScreenLeft(element){var getScreenLeft=element.offsetLeft,nested=false;var fixed=isFixed(element.offsetParent)&&element.runtimeStyle.autoLeft;while(element=element.offsetParent){if(!fixed&&element.currentStyle.position!="static")nested=true;getScreenLeft+=element.offsetLeft*(nested?-1:1)}return getScreenLeft};eval(topFunction(getScreenLeft));function resize(){for(var i=0;i<backgroundFixed.count;i++)backgroundPosition(backgroundFixed[i]);for(i=0;i<positionFixed.count;i++)foregroundPosition(positionFixed[i],true);timer=0};var timer;addEventHandler(window,"onresize",function(){if(!timer)timer=setTimeout(resize,10)})});loaded=true;if(document.readyState=="complete")_load();else addEventHandler(document,"onreadystatechange",function(){if(!complete&&document.readyState=="complete")setTimeout(_load,0)})}catch(error){unHide();alert("Error [0]: "+error.description)}finally{}}();
diff --git a/www/inc/styles/ie7/ie7.gif b/www/inc/styles/ie7/ie7.gif Binary files differdeleted file mode 100644 index 64a2c2d..0000000 --- a/www/inc/styles/ie7/ie7.gif +++ /dev/null diff --git a/www/inc/styles/ie7/license b/www/inc/styles/ie7/license deleted file mode 100644 index 1876e75..0000000 --- a/www/inc/styles/ie7/license +++ /dev/null @@ -1,17 +0,0 @@ -
- This work is licensed under a Creative Commons License.
-
- License: http://creativecommons.org/licenses/by/2.0/
-
- You are free:
-
- to copy, distribute, display, and perform the work
- to make derivative works
- to make commercial use of the work
-
- Under the following conditions:
-
- Attribution. You must give the original author credit
-
- Author: Dean Edwards/2004
- Web: http://dean.edwards.name/
diff --git a/www/inc/styles/ie7/test-trans.png b/www/inc/styles/ie7/test-trans.png Binary files differdeleted file mode 100644 index e187e2c..0000000 --- a/www/inc/styles/ie7/test-trans.png +++ /dev/null diff --git a/www/inc/stylesheet.inc.css b/www/inc/stylesheet.inc.css deleted file mode 100644 index 9415271..0000000 --- a/www/inc/stylesheet.inc.css +++ /dev/null @@ -1,141 +0,0 @@ -<!-- - body { - <?php if ($this->background) echo "background-image: url('" . $this->background . "');\n";?> - background-color: <?php echo $this->bgcolor?>; - font-family: <?php echo $this->font?>; - font-size: <?php echo $this->fontsize?>; - color: <?php echo $this->textcol?>; - } - - a:link { - color: <?php echo $this->link?>; - } - - a:visited { - color: <?php echo $this->vlink?>; - } - - a:active { - color: <?php echo $this->alink?>; - } - - a:hover { - color: <?php echo $this->hover?>; - } - - td { - font-family: <?php echo $this->font?>; - font-size: <?php echo $this->fontsize?>; - } - - input { - font-family: <?php echo $this->font?>; - font-size: <?php echo $this->fontsize?>; - } - .navigation { - color: white; - background-color: #808080; - padding-top: 2px; - padding-bottom: 3px; - padding-left: 4px; - padding-right: 4px; - } - - p.exif { - font-size: 9px; - } - - p.navigation a { - color: #f0f0f0; - font-weight: bold; - padding-top: 2px; - padding-bottom: 2px; - border: 0px; - text-align: left; - } - - p.copyright { - clear: both; - padding-top: 4ex; - font-size: 9px; - text-align: left; - text-decoration: none; - } - - h1 { - letter-spacing: .5em; - } - - img { - /* makes really interesting stuff on nn4 ;) - display: inline; */ - margin: 2px; - border-top: solid black 1px; - border-bottom: solid black 1px; - border-left: dotted #808080 1px; - border-right: dotted #808080 1px; - } - - .navigation img, div.title img { - border: 0px; - margin: 0px; - text-align: left; - } - - div.title { - font-size: 16pt; - font-weight: bold; - letter-spacing: .5em; - } - - div.title a { - text-decoration: none; - } - - p.image img { - /* margin-left: 10px; */ - border: 0px; - margin: 0px; - text-align: center; - /* - border-bottom: 0px; - margin-bottom: 0px; - */ - } - - p.comment { - font-size: 10px; - text-align: justify; - color: #606060; - width: 640px; - /* margin-left: 130px; */ - } - - span { - color: black; - font-weight: bold; - } - - img.thumb { - border: 1px black solid; - margin-top: 2px; - margin-bottom: 2px; - } - - a:hover img.thumb { - border: 1px white solid; - } - - div.year { - float: left; - margin: 2px 1em; - } - - div.year p { - margin: 2px 2em; - } - - div.year h4 { - margin: 1em 1em 2px 1em; - } ---> diff --git a/www/inc/www.class.inc.php b/www/inc/www.class.inc.php deleted file mode 100644 index 6fa319e..0000000 --- a/www/inc/www.class.inc.php +++ /dev/null @@ -1,210 +0,0 @@ -<?php -// www.class.inc.php -class C_www { - var $background, $bgcolor, $link, $vlink, $alink, $hover, $language; - var $textcol, $font, $fontsize; - - function C_www ($bgcolor="#ffffff", $link="blue", $vlink="#000000", - $alink="red", $hover="green", - $font="Bitstream Vera Sans, sans-serif", - $fontsize="11px", $textcol="black") { - #init colors etc - - $this->bgcolor = $bgcolor; - $this->link = $link; - $this->vlink = $vlink; - $this->alink = $alink; - $this->hover = $hover; - $this->font = $font; - $this->fontsize = $fontsize; - $this->textcol = $textcol; - } - - //// - // !vykpise HTML hlavicku dokumentu - // Ten CSS style jeste neni moc dodelanej - function header($title) { - global $gallery_dir,$root, $snimek, $galerie, $ThisScript, $themes; - - echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"\n"; - echo " \"http://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-strict.dtd\">\n"; - - echo "<html>\n"; - echo "<head>\n"; - echo " <title>$title</title>\n"; - # mozilla style links - if ($snimek && $galerie) { - #Top - echo " <link rel=\"Top\" href=\"$ThisScript\" />\n"; - #First - #Prev - $predchozi = $snimek - 1; - $dalsi = $snimek + 1; - if ($snimek > 1) { - echo " <link rel=\"First\" "; - echo " href=\"$ThisScript?galerie=$galerie&snimek=1\" />\n"; - echo " <link rel=\"Previous\" "; - echo "href=\"$ThisScript?galerie=$galerie&snimek=$predchozi\" />\n"; - } - #Next - if (is_file("$gallery_dir/$galerie/lq/img-$dalsi.jpg")) { - echo " <link rel=\"Next\" "; - echo " href=\"$ThisScript?galerie=$galerie&snimek=$dalsi\" />\n"; - } - #Last - $adr = opendir("$gallery_dir/$galerie/thumbs/"); - $i = -2; - while ($file = readdir($adr)) { - $i++; - } - if ($i!=$snimek) { - echo " <link rel=\"Last\" "; - echo " href=\"$ThisScript?galerie=$galerie&snimek=$i\" />\n"; - } - } - - /* check the theme in a cookie */ - $theme = $_COOKIE["theme"]; - if (!$theme) { //we didn't set the cookie yet - if (browserCheck()=="ie6+" || browserCheck()=="ie4+") { - $theme = "ie"; //IE crashes on other themes - } else { - $theme = "default"; - } - } - foreach ($themes as $skin => $url) { - echo "<link type=\"text/css\" rel=\""; - if ($skin==$theme) { - echo "stylesheet"; - } else { - echo "alternate stylesheet"; - } - echo "\" href=\"$url\" title=\"$skin\""; - echo " media=\"screen\" />\n"; - } - - require("javascript.inc.php"); - echo "</head>\n\n"; - echo "<body onload=\"checkForTheme()"; - echo "\">\n"; - } - - //// - // !zavre html stranku - function footer() { - echo "</body>\n"; - echo "</html>\n"; - } - - //// - // !vypise chybovou hlasku - // $title - nadpis a title HTML stranky - // $message - vlastni chybova hlaska - function error($title, $message) { - $this->header($title); - echo "<h1>$title</h1>\n"; - echo $message; - $this->footer(); - exit; //vysere se na vsechno - } - - - - //// - // !zacatek fomrulare - function form_start($action, $method, $upload) { - echo "<form "; - if ($upload) echo "enctype=\"multipart/form-data\" "; - echo "target=\"_top\" action=\"$action\" method=\"$method\">\n"; - echo "<table width=\"600\" border=\"0\">\n"; - } - - //// - // !konec formulare - function form_end() { - echo "</table>\n"; - echo "</form>\n"; - } - - //// - // !vykresli polozku formulare - // umi text, password, submit, file, hidden, textarea, select - // u textarea je default pocet radku... - function input($type, $name, $value, $popis, $default) { - if ($type!="hidden") { - echo "<tr valign=\"top\">\n"; - echo "<td>$popis</td>\n"; - echo "<td>"; - } - switch ($type) { - case "checkbox": - echo "<input type=\"$type\" name=\"$name\" value=\"$value\""; - if ($default) echo " checked"; - echo ">"; - break; - case "password": - case "text": - echo "<input type=\"$type\" size=\"30\" name=\"$name\" value=\"$value\">"; - break; - case "file": - echo "<input type=\"$type\" size=\"30\" name=\"$name\">"; - break; - case "hidden": - echo "<input type=\"$type\" name=\"$name\" value=\"$value\">\n"; - break; - case "textarea": - echo "<textarea name=\"$name\" cols=\"40\""; - if ($default) { - echo " rows=\"$default\""; - } else { - echo " rows=\"10\""; - } - echo " wrap=\"virtual\">$value</textarea>"; - break; - case "select": - echo "<select name=\"$name\" size=\"1\">\n"; - while (list($optval, $option) = each($value)) { - echo "<option value=\"$optval\""; - if ($optval == $default) echo " selected"; - echo ">"; - echo $option; - echo "</option>\n"; - } - echo "</select>"; - break; - case "submit": - echo "<input type=\"$type\" name=\"$name\" value=\"$value\">"; - break; - } - if ($type!="hidden") { - echo "</td>\n"; - echo "</tr>\n"; - } - } - - -} - -# return dirs sorted -class SortDir { - var $items; - - function SortDir($directory) { - $handle=opendir($directory); - while ($file = readdir($handle)) { - if ($file != "." && $file != "..") { - $this->items[]=$file; - } - } - closedir($handle); - natsort($this->items); - } - - function Read() { - $getback= (pos($this->items)); - next($this->items); - return $getback; - } -} - -?> diff --git a/www/index.php b/www/index.php deleted file mode 100644 index 0ef7bc8..0000000 --- a/www/index.php +++ /dev/null @@ -1,284 +0,0 @@ -<?php - -# uncomment this to check for uninitialized variables etc.: -# error_reporting (E_ALL); - -# get variables from the _SERVER array in order to not -# rely on register_globals = On -# (this will not work with standalone PHP) -$ThisScript=$_SERVER['PHP_SELF']; -$ScriptFileName=$_SERVER['SCRIPT_FILENAME']; -$HostName=$_SERVER['SERVER_NAME']; - -require("inc/config.inc.php"); -require("inc/www.class.inc.php"); -require("inc/funkce.inc.php"); -//session_name("navstevnik"); -//session_register("page"); - -# always get sorted directory entries -$adr = new SortDir("$gallery_dir"); - -# get variables passed in from the URL: -$galerie=$_GET["galerie"]; -$thumbsize=$_GET["thumbsize"]; -$snimek=$_GET["snimek"]; -$y=$_GET["y"]; -$cmnt=$_GET["cmnt"]; -$show_thumbs=$_GET["show_thumbs"]; -$exif_style=$_GET["exif_style"]; - -$page = new C_www; -//default colors - -if (!is_dir("$gallery_dir/$galerie/thumbs")) { - $galerie = ""; -} - -$page->header("Photos"); -require("inc/header.inc.php"); - -// folder > tree -echo "<div class=\"navigation\"><a href=\"$ThisScript\">Photo Gallery Index</a>"; - -######################################### -# Overall Gallery Index # -######################################### -if (!$galerie) { - # finish off navigation bar - echo "</div>\n\n"; - /* - - nacti adresare - - setrid podle casu - - pro kazdy rok - - setrid podle mesice - - vypis - */ -# TODO: Make date file support date of the month -# And add info to README about date files - while ($file = $adr->Read()) { - // checking for inc is only really needed when gallery_dir == $root - // hopefully not many galleries will be named inc ;) - if (is_dir("$gallery_dir/$file") && !ereg("\.", $file) && $file!="inc") { - // Use date file for gallery date if avaliable - $datefile = "$root/$gallery_dir/$file/date.txt"; - if (file_exists($datefile)) { - $date_array = file($datefile); - $year=trim($date_array[2]); - $month=trim($date_array[1]); - $galerieyear["$file"]=$year; - $galeriemonth["$file"]=$month; - } else { // Get Dates from modification times - $mtime = filemtime("$gallery_dir/$file"); - $galerieyear["$file"] = date("Y", $mtime); - $galeriemonth["$file"] = date("F", $mtime); - } - } - } - - // re-sort array in order of months - so that they will be printed in order - $months = array("December", "November", "October", "September", "August", "July", "June", "May", "April", "March", "February", "January"); - for ($i = 2010; $i >= 1990; $i--) { - foreach ($months as $thismonth) { - foreach ($galeriemonth as $foldername => $month) { - if (strcasecmp($month, $thismonth) == 0) { - if ($galerieyear["$foldername"] == $i) { - $galerieyearordered["$foldername"]=$galerieyear["$foldername"]; - $galeriemonthordered["$foldername"]=$galeriemonth["$foldername"]; - } - } - } - } - } - - foreach ($galerieyearordered as $file => $mtime) { - $year=$galerieyearordered["$file"]; - $month=$galeriemonthordered["$file"]; - if ($thisyear!=$year) { #if the year is not equal to the current year - #This is the first year - if ($thisyear) { echo " </div>\n</div>\n";}// end last year if this is - // not the first one - #This is a new year - unset($thismonth); - echo "<div class=\"year\"><h3>$year</h3>\n"; - echo ""; - } - # now months - if ($thismonth!=$month) { - #first one - if ($thismonth) { echo " </div>\n"; } // end of last month if - // this is not the first one - #new month - echo " <div class=\"month\"><h4>$month</h4>\n"; - } - - echo " <p><a href=\"$ThisScript?galerie=$file\">$file</a></p>\n"; - $thisyear=$year; - $thismonth=$month; - } - echo " </div>\n</div>\n\n"; - -############################## -# Individual Gallery Index # -############################## -} elseif (!$snimek) { - # finish off navigation header - echo "\n > $galerie</div>\n\n<p class=\"bigthumbnails\">\n"; - //thumbnails - $path = "$gallery_dir/$galerie/thumbs"; - $obrazky = new SortDir($path); - check($galerie); // check for nasty input - while ($file = $obrazky->read()) { - if (is_file("$path/$file") && eregi("^img-([0-9]+)\.(png|jpg)", $file, $x)) { - $thumb = "$gallery_dir/$galerie/thumbs/img-${x[1]}.${x[2]}"; - $velikost = getimagesize("$root/$thumb"); - echo " <a href=\"$ThisScript?galerie=$galerie&snimek=${x[1]}\">"; - echo "<img "; - if ($thumbsize) { - echo "width=\"120\" height=\"80\" "; - } else { - // scale portraits to 80 height - if ($velikost[0]>90) { - echo $velikost[3]; - } else { - echo "width=\""; - $scaled = round($velikost[0] / 1.5); - echo $scaled; - echo "\" height=\"${velikost[0]}\""; - } - } - echo " src=\"$thumb\" "; - echo "alt=\"photo No. ${x[1]}\" />"; - echo "</a>\n"; - } - } - echo "</p>\n"; - //and links to archived images: - echo "\n<p class=\"archives\">\n"; - if (file_exists("$gallery_dir/$galerie/zip/mq.zip")) { - echo "[ <a href=\"$gallery_dir/$galerie/zip/mq.zip\">zipped MQ images</a> ] "; - } - if (file_exists("$gallery_dir/$galerie/zip/mq.tar.bz2")) { - echo "[ <a href=\"$gallery_dir/$galerie/zip/mq.tar.bz2\">MQ images tarball</a> ] "; - } - if (file_exists("$gallery_dir/$galerie/zip/hq.zip")) { - echo "[ <a href=\"$gallery_dir/$galerie/zip/hq.zip\">zipped HQ images</a> ]"; - } - if (file_exists("$gallery_dir/$galerie/zip/hq.tar.bz2")) { - echo "[ <a href=\"$gallery_dir/$galerie/zip/hq.tar.bz2\">HQ images tarball</a> ]"; - } - echo "</p>"; - -################################# -# Individual Image # -################################# -} else { //low-res image - # finish off header - echo "\n > <a href=\"$ThisScript?galerie=$galerie\">$galerie</a>\n > Photo"; - echo " $snimek</div>"; - $path = "$gallery_dir/$galerie/thumbs"; - $obrazky = new SortDir("$path"); - check($galerie); - $path = "$gallery_dir/$galerie/lq"; - $file = "$path/img-$snimek.jpg"; - if (!file_exists($file)) { - echo "No such image"; - $page->footer(); - exit; - } - $velikost = getimagesize("$root/$file"); - /* - navigation($galerie, $snimek, null); - */ - - // mini thumbnail roll - - if ($show_thumbs) { - echo "\n<!--mini thumbnail roll-->\n<div class=\"thumbroll\">"; - echo "<a id=\"minus\" href=\"$ThisScript?galerie=$galerie&snimek=$snimek"; - echo "&exif_style=$exif_style\">"; - echo "</a>\n"; - echo " : \n"; - while ($thumbfile = $obrazky->read()) { - if ( eregi("^img-([0-9]+)\.(png|jpg)", - $thumbfile, $x)) { - $thumb = "$gallery_dir/$galerie/thumbs/img-${x[1]}.${x[2]}"; - echo " <a href=\"$ThisScript?galerie=$galerie&snimek=${x[1]}"; - echo "&show_thumbs=$show_thumbs&exif_style=$exif_style\">"; - echo "<img class=\"thumb\" "; - // hadess' hack (TM) ;) - if ($thumbsize) { - echo " width=\"24\" height=\"16\""; - } else { - $minithumb=getimagesize("$root/$thumb"); - $w=$minithumb[0]/6; - $h=$minithumb[1]/6; - echo " width=\"$w\" height=\"$h\""; - } - echo " src=\"$thumb\" "; - echo "alt=\"photo No. ${x[1]}\" />"; - echo "</a> \n"; - } - } - if (file_exists("$gallery_dir/$galerie/zip/hq.zip")) { - echo "<a id=\"zip\" href=\"$gallery_dir/$galerie/zip/hq.zip\">"; - echo "zip<span /></a>"; - } - if (file_exists("$gallery_dir/$galerie/zip/hq.tar.bz2")) { - echo "<a id=\"zip\" href=\"$gallery_dir/$galerie/zip/hq.tar.bz2\">"; - echo "zip<span /></a>"; - } - echo "</div>\n"; - } else { - // show the popup button - echo "\n<!--mini thumbnail popup-->\n<div class=\"thumbroll\">"; - echo "<a id=\"plus\" href=\"$ThisScript?galerie=$galerie&snimek=$snimek"; - echo "&exif_style=$exif_style&show_thumbs=yes\">"; - echo "</a>\n"; - echo "</div>\n"; - } - - /* main image + thumbnail navigation (prev/next) */ - - $divheight = $velikost[1] + 10; - echo "<div id=\"image\" style=\"height: ${divheight}px\">\n"; // extra kludge - // because of tall - // images - - echo "<img id=\"preview\" ${velikost[3]} src=\"$file\" alt=\"$snimek\" />\n"; - navigation($galerie, $snimek, "prev"); - navigation($galerie, $snimek, "next"); - echo "</div>\n"; //image - - - if ($exif_prog) require("$root/inc/exif.inc.php"); // FIXME: prettify - $comment = "$root/$gallery_dir/$galerie/comments/$snimek.txt"; - if (file_exists($comment)) { - $cmnt_array = file($comment); - while ($x = current($cmnt_array)) { - eregi("^ *(.*) *", $x, $y); - $cmnt .= $y[1]; - next($cmnt_array); - } - /* php4 only - foreach ($cmnt_array as $x) { - $cmnt .= $x; - } - */ - echo "<div class=\"comment\">$cmnt</div>"; - } - echo "<div id=\"mqhq\">"; - if (file_exists("$gallery_dir/$galerie/mq/img-$snimek.jpg")) { - echo "<a href=\"$gallery_dir/$galerie/mq/img-$snimek.jpg\">MQ</a> "; - } - if (file_exists("$gallery_dir/$galerie/hq/img-$snimek.jpg")) { - echo "<a href=\"$gallery_dir/$galerie/hq/img-$snimek.jpg\">HQ</a>"; - } - echo "</div>\n"; //mqhq - - navigation($galerie, $snimek, null); -} - -require("inc/footer.inc.php"); -$page->footer(); -?> diff --git a/www/l10n/cs/date.lang b/www/l10n/cs/date.lang deleted file mode 100644 index 72a45a0..0000000 --- a/www/l10n/cs/date.lang +++ /dev/null @@ -1,79 +0,0 @@ -;Jan -Led -;Feb -Úno -;Mar -Bře -;Apr -Dub -;May -Kvě -;Jun -Čer -;Jul -Čec -;Aug -Srp -;Sep -Zář -;Oct -Říj -;Nov -Lis -;Dec -Pro - -;January -Leden -;February -Únor -;March -Březen -;April -Duben -;May -Květen -;June -Červen -;July -Červenec -;August -Srpen -;September -Září -;October -Říjen -;November -Listopad -;December -Prosinec - -;Mon -Po -;Tue -Út -;Wed -St -;Thu -Čt -;Fri -Pá -;Sat -So -;Sun -Ne - -;Monday -Pondělí -;Tuesday -Úterý -;Wednesday -Středa -;Thursday -Čtvrtek -;Friday -Pátek -;Saturday -Sobota -;Sunday -Neděle diff --git a/www/l10n/cs/exif.lang b/www/l10n/cs/exif.lang deleted file mode 100644 index 2fc7526..0000000 --- a/www/l10n/cs/exif.lang +++ /dev/null @@ -1,21 +0,0 @@ -;Time Taken -Čas pořízení -;Camera Manufacturer -Výrobce fotoaparátu -;Camera Model -Typ -;Real Focal Length -Ohnisková vzdálenost -;Focal Length Relative to 35mm Film -Ohnisková vzdálenost (přepočteno na 35mm) -;F Stop -Clona -;Time of Exposure -Čas expozice -;Flash -Blesk - -;More info -Více informací -;Less info -Méně informací diff --git a/www/l10n/cs/main.lang b/www/l10n/cs/main.lang deleted file mode 100644 index 2c2dc57..0000000 --- a/www/l10n/cs/main.lang +++ /dev/null @@ -1,111 +0,0 @@ -;No comment spam -Žádné reklamní příspěvky - -;Your comment includes blacklisted word -Váš komentář obsahuje nepovolené slovo - -;You ve written the check number wrong -Kontorlní číslo opsáno chybně - -;Could not set name cookie! -Nepovedlo se zapsat koláček se jménem - -;Anonymous -Anonymní - -;Could not write to -nepovedlo se zapsat do - -;Comment from -Komentář od - -;Comment -Komentář - -;Comments -Komentářů - -;zipped MQ images -archiv obrázků ZIP (SK) - -;MQ images tarball -archiv obrázků TGZ (SK) - -;zipped HQ images -archiv obrázků ZIP (VK) - -;HQ images tarball -archiv obrázků TGZ (VK) - -;No such image -Obrázek neexistuje - -;Show Thumbnail Navigation -Zobrazit náhledy - -;Could not write to -Nepovedlo se zapsat do - -;This image has been viewed -Obrázek již byl viděn - -;times -krát - -;WARNING: comment dir not writable -POZOR: do adresáře s komentáři není právo zápisu - -;MQ -Stř. - -;HQ -Velké - -;Generated by -Vygenerováno pomocí - -;Post a Comment -Přidej komentář - -;Show Form -Zobraz formulář - -;Hide Form -Schovej formulář - -;Name: -Jméno : - -;Enter your name. -Vložte svoje jméno. - -;Remember Name: -Zapamatuj jméno: - -;Should the browser remember your name? -Má se jméno zapamatovat pro další použití? - -;Retype PIN Above: -Vložte kontrolní číslo: - -;Enter the number shown above. -Kontrolní čislo uvedené nahoře je nutné přepsat do tohoto políčka - -;Send -Pošli - -;Allowed HTML tags: a,b,i,ul,li,blockquote,br. -Povolené HTML značky: a,b,i,ul,li,blockquote,br. - - -;display line -zobrazit na řádce - -;display table -zobrazit jako tabulku - -;Previous -Předchozí - -;Next -Následující diff --git a/www/l10n/fr/date.lang b/www/l10n/fr/date.lang deleted file mode 100644 index e9d56b5..0000000 --- a/www/l10n/fr/date.lang +++ /dev/null @@ -1,79 +0,0 @@ -;Jan -Jan -;Feb -Fv -;Mar -Mar -;Apr -Avr -;May -Mai -;Jun -Juin -;Jul -Juil -;Aug -Ao -;Sep -Sep -;Oct -Oct -;Nov -Nov -;Dec -Dec - -;January -Janvier -;February -Fvrier -;March -Mars -;April -Avril -;May -Mai -;June -Juin -;July -Juillet -;August -Aot -;September -Septembre -;October -Octobre -;November -Novembre -;December -Dcembre - -;Mon -Lun -;Tue -Mar -;Wed -Mer -;Thu -Jeu -;Fri -Ven -;Sat -Sam -;Sun -Dim - -;Monday -Lundi -;Tuesday -Mardi -;Wednesday -Mercredi -;Thursday -Jeudi -;Friday -Vendredi -;Saturday -Samedi -;Sunday -Dimanche diff --git a/www/l10n/fr/main.lang b/www/l10n/fr/main.lang deleted file mode 100644 index e824a4e..0000000 --- a/www/l10n/fr/main.lang +++ /dev/null @@ -1,111 +0,0 @@ -;No comment spam -Ne spammer pas les commentaires - -;Your comment includes blacklisted word -Votre commentaire contient des mots interdits. - -;You ve written the check number wrong -Le code de verification est faux - -;Could not set name cookie! -Ne peu créer le nom du cookie - -;Anonymous -Anonyme - -;Could not write to -Ne peut ecrire dans - -;Comment from -Commentaire de - -;Comment - Commentaire - -;Comments -Commentaires - -;zipped MQ images -archive zip (MQ) - -;MQ images tarball -archive tgz (MQ) - -;zipped HQ images -archive zip (HQ) - -;HQ images tarball -archive tgz (HQ) - -;No such image -Aucune image - -;Show Thumbnail Navigation -Affiche les vignettes de navigation - -;Could not write to -Ne peu écrire dans - -;This image has been viewed -Cette image a été vu - -;times -fois - -;WARNING: comment dir not writable -ATENTION : le répertoire des commentaire n'est pas accessible en écriture - -;MQ -Qualité moyenne - -;HQ -haute qualité - -;Generated by -géneré par - -;Post a Comment -Laisser un commentaire - -;Show Form -Afficher le formulaire - -;Hide Form -Cacher le formulaire - -;Name: -Nom : - -;Enter your name. -Entrer votre nom. - -;Remember Name: -Se souvenir de mon nom - -;Should the browser remember your name? -Le navigateur doit-il se rappeller votre nom? - -;Retype PIN Above: -Retaper le code au dessus - -;Enter the number shown above. -Entrer le code au dessus - -;Send -Envoyer - -;Allowed HTML tags: a,b,i,ul,li,blockquote,br. -;tags HTML autorisé: a,b,i,ul,li,blockquote,br. - - -;display line -affichage en ligne - -;display table -affichage table - -;Previous -Précedente - -;Next -Suivante diff --git a/www/left.png b/www/left.png Binary files differdeleted file mode 100644 index 63d306c..0000000 --- a/www/left.png +++ /dev/null diff --git a/www/lib/lib.l10n.php b/www/lib/lib.l10n.php deleted file mode 100644 index b2bf6c2..0000000 --- a/www/lib/lib.l10n.php +++ /dev/null @@ -1,58 +0,0 @@ -<?php -# ***** BEGIN LICENSE BLOCK ***** -# This file is part of DotClear. -# Copyright (c) 2004 Olivier Meunier and contributors. All rights -# reserved. -# -# DotClear is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# DotClear is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with DotClear; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# ***** END LICENSE BLOCK ***** - - -function __($str) -{ - return (!empty($GLOBALS['__l10n'][$str])) ? $GLOBALS['__l10n'][$str] : $str; -} - -//why is this a class damnit! -//probably just to structure the functions -class l10n -{ - function init() - { - $GLOBALS['__l10n'] = array(); - $GLOBALS['__l10n_files'] = array(); - } - - function set($file) - { - if (!file_exists($file)) { - //trigger_error('l10n file not found',E_USER_NOTICE); - return false; - } - - $f = file($file); - $GLOBALS['__l10n_files'][] = $file; - - for ($i=0; $i<count($f); $i++) { - if (substr($f[$i],0,1) == ';' && !empty($f[$i+1])) { - $GLOBALS['__l10n'][trim(substr($f[$i],1))] = trim($f[$i+1]); - $i++; - } - } - } -} - -?> diff --git a/www/logo-mini.png b/www/logo-mini.png Binary files differdeleted file mode 100644 index 8949154..0000000 --- a/www/logo-mini.png +++ /dev/null diff --git a/www/logo.png b/www/logo.png Binary files differdeleted file mode 100644 index 24878c3..0000000 --- a/www/logo.png +++ /dev/null diff --git a/www/minus.png b/www/minus.png Binary files differdeleted file mode 100644 index bc7a830..0000000 --- a/www/minus.png +++ /dev/null diff --git a/www/plus.png b/www/plus.png Binary files differdeleted file mode 100644 index 6b103cd..0000000 --- a/www/plus.png +++ /dev/null diff --git a/www/right.png b/www/right.png Binary files differdeleted file mode 100644 index f998098..0000000 --- a/www/right.png +++ /dev/null diff --git a/www/stock_camera-16.png b/www/stock_camera-16.png Binary files differdeleted file mode 100644 index 42ec54a..0000000 --- a/www/stock_camera-16.png +++ /dev/null diff --git a/www/top.png b/www/top.png Binary files differdeleted file mode 100644 index 8cc26b4..0000000 --- a/www/top.png +++ /dev/null diff --git a/www/zip.png b/www/zip.png Binary files differdeleted file mode 100644 index b52d1d7..0000000 --- a/www/zip.png +++ /dev/null |