update all the old flash galleries to use ruffle
This commit is contained in:
@@ -1,65 +0,0 @@
|
||||
// Flash Version Detector v1.1.5
|
||||
// http://www.dithered.com/javascript/flash_detect/index.html
|
||||
// code by Chris Nott (chris@NOSPAMdithered.com - remove NOSPAM)
|
||||
// with VBScript code from Alastair Hamilton
|
||||
|
||||
var flashVersion = 0;
|
||||
function getFlashVersion() {
|
||||
var agent = navigator.userAgent.toLowerCase();
|
||||
|
||||
// NS3 needs flashVersion to be a local variable
|
||||
if (agent.indexOf("mozilla/3") != -1 && agent.indexOf("msie") == -1) {
|
||||
flashVersion = 0;
|
||||
}
|
||||
|
||||
// NS3+, Opera3+, IE5+ Mac (support plugin array): check for Flash plugin in plugin array
|
||||
if (navigator.plugins != null && navigator.plugins.length > 0) {
|
||||
var flashPlugin = navigator.plugins['Shockwave Flash'];
|
||||
if (typeof flashPlugin == 'object') {
|
||||
if (flashPlugin.description.indexOf('7.') != -1) flashVersion = 7;
|
||||
else if (flashPlugin.description.indexOf('6.') != -1) flashVersion = 6;
|
||||
else if (flashPlugin.description.indexOf('5.') != -1) flashVersion = 5;
|
||||
else if (flashPlugin.description.indexOf('4.') != -1) flashVersion = 4;
|
||||
else if (flashPlugin.description.indexOf('3.') != -1) flashVersion = 3;
|
||||
}
|
||||
}
|
||||
|
||||
// IE4+ Win32: attempt to create an ActiveX object using VBScript
|
||||
else if (agent.indexOf("msie") != -1 && parseInt(navigator.appVersion) >= 4 && agent.indexOf("win")!=-1 && agent.indexOf("16bit")==-1) {
|
||||
document.write('<scr' + 'ipt language="VBScript"\> \n');
|
||||
document.write('on error resume next \n');
|
||||
document.write('dim obFlash \n');
|
||||
document.write('set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.7") \n');
|
||||
document.write('if IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 7 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.6") end if \n');
|
||||
document.write('if flashVersion < 7 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 6 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.5") end if \n');
|
||||
document.write('if flashVersion < 6 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 5 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.4") end if \n');
|
||||
document.write('if flashVersion < 5 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 4 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.3") end if \n');
|
||||
document.write('if flashVersion < 4 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 3 \n');
|
||||
document.write('end if');
|
||||
document.write('</scr' + 'ipt\> \n');
|
||||
}
|
||||
|
||||
// WebTV 2.5 supports flash 3
|
||||
else if (agent.indexOf("webtv/2.5") != -1) flashVersion = 3;
|
||||
|
||||
// older WebTV supports flash 2
|
||||
else if (agent.indexOf("webtv") != -1) flashVersion = 2;
|
||||
|
||||
// Can't detect in all other cases
|
||||
else {
|
||||
flashVersion = flashVersion_DONTKNOW;
|
||||
}
|
||||
|
||||
return flashVersion;
|
||||
}
|
||||
|
||||
flashVersion_DONTKNOW = -1;
|
||||
@@ -4,87 +4,41 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Fall Photos</title>
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #181818;
|
||||
color: #ffffff;
|
||||
font-family: "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, sans-serif;
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 18pt;
|
||||
font-weight: normal;
|
||||
padding: 20px 0 10px;
|
||||
margin: 0;
|
||||
}
|
||||
.back {
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: #aaaaaa;
|
||||
font-size: 10pt;
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
.back a, .back a:visited {
|
||||
color: #aaaaaa;
|
||||
text-decoration: none;
|
||||
}
|
||||
.back a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
.gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
||||
gap: 10px;
|
||||
padding: 0 20px 30px;
|
||||
max-width: 900px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.gallery a {
|
||||
display: block;
|
||||
line-height: 0;
|
||||
}
|
||||
.gallery img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border: 1px solid #333;
|
||||
display: block;
|
||||
}
|
||||
.gallery img:hover {
|
||||
border-color: #888;
|
||||
}
|
||||
</style>
|
||||
<style>html, body { margin: 0; padding: 0; height: 100%; background-color: #181818; color: #fff; font-family: Arial, sans-serif; }h1 { text-align: center; font-size: 18pt; font-weight: normal; padding: 20px 0 10px; margin: 0; }.back { display: block; text-align: center; color: #aaa; font-size: 10pt; padding-bottom: 20px; }.back a, .back a:visited { color: #aaa; text-decoration: none; }.back a:hover { color: #fff; }.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 0 20px 30px; max-width: 900px; margin: 0 auto; }.gallery a { display: block; line-height: 0; }.gallery img { width: 100%; height: auto; border: 1px solid #333; display: block; }.gallery img:hover { border-color: #888; }</style>
|
||||
<script src="../../../../scripts/ruffle.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Fall Photos</h1>
|
||||
<div class="back"><a href="../../../photos.html">← Back</a></div>
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="middle"><param name="movie" value="viewer.swf"><param name="quality" value="high"><param name="scale" value="noscale"><param name="BGCOLOR" value="#181818"><embed src="viewer.swf" width="100%" height="100%" align="middle" quality="high" scale="noscale" bgcolor="#181818" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>
|
||||
<noscript>
|
||||
<div class="gallery">
|
||||
<a href="images/dsc00735.jpg"><img src="thumbs/dsc00735.jpg" alt="dsc00735"></a>
|
||||
<a href="images/dscn7687.jpg"><img src="thumbs/dscn7687.jpg" alt="dscn7687"></a>
|
||||
<a href="images/dscn7694.jpg"><img src="thumbs/dscn7694.jpg" alt="dscn7694"></a>
|
||||
<a href="images/img_6282.jpg"><img src="thumbs/img_6282.jpg" alt="img_6282"></a>
|
||||
<a href="images/img_6299.jpg"><img src="thumbs/img_6299.jpg" alt="img_6299"></a>
|
||||
<a href="images/img_6322.jpg"><img src="thumbs/img_6322.jpg" alt="img_6322"></a>
|
||||
<a href="images/img_6323.jpg"><img src="thumbs/img_6323.jpg" alt="img_6323"></a>
|
||||
<a href="images/img_6330.jpg"><img src="thumbs/img_6330.jpg" alt="img_6330"></a>
|
||||
<a href="images/img_6332.jpg"><img src="thumbs/img_6332.jpg" alt="img_6332"></a>
|
||||
<a href="images/img_6335.jpg"><img src="thumbs/img_6335.jpg" alt="img_6335"></a>
|
||||
<a href="images/img_6352.jpg"><img src="thumbs/img_6352.jpg" alt="img_6352"></a>
|
||||
<a href="images/img_6357.jpg"><img src="thumbs/img_6357.jpg" alt="img_6357"></a>
|
||||
<a href="images/img_6363.jpg"><img src="thumbs/img_6363.jpg" alt="img_6363"></a>
|
||||
<a href="images/img_6364.jpg"><img src="thumbs/img_6364.jpg" alt="img_6364"></a>
|
||||
<a href="images/img_6373.jpg"><img src="thumbs/img_6373.jpg" alt="img_6373"></a>
|
||||
<a href="images/img_6385.jpg"><img src="thumbs/img_6385.jpg" alt="img_6385"></a>
|
||||
<a href="images/img_6577_2.jpg"><img src="thumbs/img_6577_2.jpg" alt="img_6577_2"></a>
|
||||
<a href="images/img_6597.jpg"><img src="thumbs/img_6597.jpg" alt="img_6597"></a>
|
||||
<a href="images/img_6602.jpg"><img src="thumbs/img_6602.jpg" alt="img_6602"></a>
|
||||
<a href="images/img_6611.jpg"><img src="thumbs/img_6611.jpg" alt="img_6611"></a>
|
||||
<a href="images/img_6615.jpg"><img src="thumbs/img_6615.jpg" alt="img_6615"></a>
|
||||
<a href="images/img_6617.jpg"><img src="thumbs/img_6617.jpg" alt="img_6617"></a>
|
||||
<a href="images/img_6618.jpg"><img src="thumbs/img_6618.jpg" alt="img_6618"></a>
|
||||
<a href="images/img_6635.jpg"><img src="thumbs/img_6635.jpg" alt="img_6635"></a>
|
||||
<a href="images/img_6642.jpg"><img src="thumbs/img_6642.jpg" alt="img_6642"></a>
|
||||
<a href="images/dsc00735.jpg"><img src="thumbs/dsc00735.jpg" alt="dsc00735.jpg"></a>
|
||||
<a href="images/dscn7687.jpg"><img src="thumbs/dscn7687.jpg" alt="dscn7687.jpg"></a>
|
||||
<a href="images/dscn7694.jpg"><img src="thumbs/dscn7694.jpg" alt="dscn7694.jpg"></a>
|
||||
<a href="images/img_6282.jpg"><img src="thumbs/img_6282.jpg" alt="img_6282.jpg"></a>
|
||||
<a href="images/img_6299.jpg"><img src="thumbs/img_6299.jpg" alt="img_6299.jpg"></a>
|
||||
<a href="images/img_6322.jpg"><img src="thumbs/img_6322.jpg" alt="img_6322.jpg"></a>
|
||||
<a href="images/img_6323.jpg"><img src="thumbs/img_6323.jpg" alt="img_6323.jpg"></a>
|
||||
<a href="images/img_6330.jpg"><img src="thumbs/img_6330.jpg" alt="img_6330.jpg"></a>
|
||||
<a href="images/img_6332.jpg"><img src="thumbs/img_6332.jpg" alt="img_6332.jpg"></a>
|
||||
<a href="images/img_6335.jpg"><img src="thumbs/img_6335.jpg" alt="img_6335.jpg"></a>
|
||||
<a href="images/img_6352.jpg"><img src="thumbs/img_6352.jpg" alt="img_6352.jpg"></a>
|
||||
<a href="images/img_6357.jpg"><img src="thumbs/img_6357.jpg" alt="img_6357.jpg"></a>
|
||||
<a href="images/img_6363.jpg"><img src="thumbs/img_6363.jpg" alt="img_6363.jpg"></a>
|
||||
<a href="images/img_6364.jpg"><img src="thumbs/img_6364.jpg" alt="img_6364.jpg"></a>
|
||||
<a href="images/img_6373.jpg"><img src="thumbs/img_6373.jpg" alt="img_6373.jpg"></a>
|
||||
<a href="images/img_6385.jpg"><img src="thumbs/img_6385.jpg" alt="img_6385.jpg"></a>
|
||||
<a href="images/img_6577_2.jpg"><img src="thumbs/img_6577_2.jpg" alt="img_6577_2.jpg"></a>
|
||||
<a href="images/img_6597.jpg"><img src="thumbs/img_6597.jpg" alt="img_6597.jpg"></a>
|
||||
<a href="images/img_6602.jpg"><img src="thumbs/img_6602.jpg" alt="img_6602.jpg"></a>
|
||||
<a href="images/img_6611.jpg"><img src="thumbs/img_6611.jpg" alt="img_6611.jpg"></a>
|
||||
<a href="images/img_6615.jpg"><img src="thumbs/img_6615.jpg" alt="img_6615.jpg"></a>
|
||||
<a href="images/img_6617.jpg"><img src="thumbs/img_6617.jpg" alt="img_6617.jpg"></a>
|
||||
<a href="images/img_6618.jpg"><img src="thumbs/img_6618.jpg" alt="img_6618.jpg"></a>
|
||||
<a href="images/img_6635.jpg"><img src="thumbs/img_6635.jpg" alt="img_6635.jpg"></a>
|
||||
<a href="images/img_6642.jpg"><img src="thumbs/img_6642.jpg" alt="img_6642.jpg"></a>
|
||||
</div>
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +1,20 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Best Photos</title>
|
||||
<style>html, body { margin: 0; padding: 0; height: 100%; background-color: #181818; color: #fff; font-family: Arial, sans-serif; }h1 { text-align: center; font-size: 18pt; font-weight: normal; padding: 20px 0 10px; margin: 0; }.back { display: block; text-align: center; color: #aaa; font-size: 10pt; padding-bottom: 20px; }.back a, .back a:visited { color: #aaa; text-decoration: none; }.back a:hover { color: #fff; }.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 0 20px 30px; max-width: 900px; margin: 0 auto; }.gallery a { display: block; line-height: 0; }.gallery img { width: 100%; height: auto; border: 1px solid #333; display: block; }.gallery img:hover { border-color: #888; }</style>
|
||||
<script src="../../../../scripts/ruffle.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Best Photos</h1>
|
||||
<div class="back"><a href="../../../photos.html">← Back</a></div>
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="middle"><param name="movie" value="viewer.swf"><param name="quality" value="high"><param name="scale" value="noscale"><param name="BGCOLOR" value="#181818"><embed src="viewer.swf" width="100%" height="100%" align="middle" quality="high" scale="noscale" bgcolor="#181818" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>
|
||||
<noscript>
|
||||
<div class="gallery">
|
||||
<a href="images/115-1503_IMG.jpg"><img src="thumbs/115-1503_IMG.jpg" alt="115-1503_IMG"></a>
|
||||
</div>
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
||||
@@ -1 +0,0 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
||||
@@ -1,65 +0,0 @@
|
||||
// Flash Version Detector v1.1.5
|
||||
// http://www.dithered.com/javascript/flash_detect/index.html
|
||||
// code by Chris Nott (chris@NOSPAMdithered.com - remove NOSPAM)
|
||||
// with VBScript code from Alastair Hamilton
|
||||
|
||||
var flashVersion = 0;
|
||||
function getFlashVersion() {
|
||||
var agent = navigator.userAgent.toLowerCase();
|
||||
|
||||
// NS3 needs flashVersion to be a local variable
|
||||
if (agent.indexOf("mozilla/3") != -1 && agent.indexOf("msie") == -1) {
|
||||
flashVersion = 0;
|
||||
}
|
||||
|
||||
// NS3+, Opera3+, IE5+ Mac (support plugin array): check for Flash plugin in plugin array
|
||||
if (navigator.plugins != null && navigator.plugins.length > 0) {
|
||||
var flashPlugin = navigator.plugins['Shockwave Flash'];
|
||||
if (typeof flashPlugin == 'object') {
|
||||
if (flashPlugin.description.indexOf('7.') != -1) flashVersion = 7;
|
||||
else if (flashPlugin.description.indexOf('6.') != -1) flashVersion = 6;
|
||||
else if (flashPlugin.description.indexOf('5.') != -1) flashVersion = 5;
|
||||
else if (flashPlugin.description.indexOf('4.') != -1) flashVersion = 4;
|
||||
else if (flashPlugin.description.indexOf('3.') != -1) flashVersion = 3;
|
||||
}
|
||||
}
|
||||
|
||||
// IE4+ Win32: attempt to create an ActiveX object using VBScript
|
||||
else if (agent.indexOf("msie") != -1 && parseInt(navigator.appVersion) >= 4 && agent.indexOf("win")!=-1 && agent.indexOf("16bit")==-1) {
|
||||
document.write('<scr' + 'ipt language="VBScript"\> \n');
|
||||
document.write('on error resume next \n');
|
||||
document.write('dim obFlash \n');
|
||||
document.write('set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.7") \n');
|
||||
document.write('if IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 7 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.6") end if \n');
|
||||
document.write('if flashVersion < 7 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 6 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.5") end if \n');
|
||||
document.write('if flashVersion < 6 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 5 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.4") end if \n');
|
||||
document.write('if flashVersion < 5 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 4 \n');
|
||||
document.write('else set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash.3") end if \n');
|
||||
document.write('if flashVersion < 4 and IsObject(obFlash) then \n');
|
||||
document.write('flashVersion = 3 \n');
|
||||
document.write('end if');
|
||||
document.write('</scr' + 'ipt\> \n');
|
||||
}
|
||||
|
||||
// WebTV 2.5 supports flash 3
|
||||
else if (agent.indexOf("webtv/2.5") != -1) flashVersion = 3;
|
||||
|
||||
// older WebTV supports flash 2
|
||||
else if (agent.indexOf("webtv") != -1) flashVersion = 2;
|
||||
|
||||
// Can't detect in all other cases
|
||||
else {
|
||||
flashVersion = flashVersion_DONTKNOW;
|
||||
}
|
||||
|
||||
return flashVersion;
|
||||
}
|
||||
|
||||
flashVersion_DONTKNOW = -1;
|
||||
@@ -4,84 +4,41 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Random Photos</title>
|
||||
<style>
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
body {
|
||||
background-color: #181818;
|
||||
color: #fff;
|
||||
font-family: "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Verdana, sans-serif;
|
||||
padding: 30px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 20pt;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.back {
|
||||
display: inline-block;
|
||||
margin-bottom: 25px;
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
font-size: 10pt;
|
||||
}
|
||||
.back:hover { color: #fff; }
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
.grid a {
|
||||
display: block;
|
||||
border: 1px solid #333;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
transition: border-color 0.2s;
|
||||
}
|
||||
.grid a:hover { border-color: #888; }
|
||||
.grid img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
@media (max-width: 800px) {
|
||||
.grid { grid-template-columns: repeat(4, 1fr); }
|
||||
}
|
||||
@media (max-width: 500px) {
|
||||
.grid { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
</style>
|
||||
<style>html, body { margin: 0; padding: 0; height: 100%; background-color: #181818; color: #fff; font-family: Arial, sans-serif; }h1 { text-align: center; font-size: 18pt; font-weight: normal; padding: 20px 0 10px; margin: 0; }.back { display: block; text-align: center; color: #aaa; font-size: 10pt; padding-bottom: 20px; }.back a, .back a:visited { color: #aaa; text-decoration: none; }.back a:hover { color: #fff; }.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 0 20px 30px; max-width: 900px; margin: 0 auto; }.gallery a { display: block; line-height: 0; }.gallery img { width: 100%; height: auto; border: 1px solid #333; display: block; }.gallery img:hover { border-color: #888; }</style>
|
||||
<script src="../../../../scripts/ruffle.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>Random Photos</h1>
|
||||
<a class="back" href="../../../photos.html">← Back</a>
|
||||
|
||||
<div class="grid">
|
||||
<a href="images/dscn7736.jpg"><img src="thumbs/dscn7736.jpg" alt="dscn7736" loading="lazy"></a>
|
||||
<a href="images/file0401.jpg"><img src="thumbs/file0401.jpg" alt="file0401" loading="lazy"></a>
|
||||
<a href="images/file1917.jpg"><img src="thumbs/file1917.jpg" alt="file1917" loading="lazy"></a>
|
||||
<a href="images/file1945.jpg"><img src="thumbs/file1945.jpg" alt="file1945" loading="lazy"></a>
|
||||
<a href="images/img_0645.jpg"><img src="thumbs/img_0645.jpg" alt="img_0645" loading="lazy"></a>
|
||||
<a href="images/img_0659.jpg"><img src="thumbs/img_0659.jpg" alt="img_0659" loading="lazy"></a>
|
||||
<a href="images/img_0986.jpg"><img src="thumbs/img_0986.jpg" alt="img_0986" loading="lazy"></a>
|
||||
<a href="images/img_1076.jpg"><img src="thumbs/img_1076.jpg" alt="img_1076" loading="lazy"></a>
|
||||
<a href="images/img_1332.jpg"><img src="thumbs/img_1332.jpg" alt="img_1332" loading="lazy"></a>
|
||||
<a href="images/img_1404.jpg"><img src="thumbs/img_1404.jpg" alt="img_1404" loading="lazy"></a>
|
||||
<a href="images/img_1437.jpg"><img src="thumbs/img_1437.jpg" alt="img_1437" loading="lazy"></a>
|
||||
<a href="images/img_2039.jpg"><img src="thumbs/img_2039.jpg" alt="img_2039" loading="lazy"></a>
|
||||
<a href="images/img_2154.jpg"><img src="thumbs/img_2154.jpg" alt="img_2154" loading="lazy"></a>
|
||||
<a href="images/img_2189.jpg"><img src="thumbs/img_2189.jpg" alt="img_2189" loading="lazy"></a>
|
||||
<a href="images/img_2583.jpg"><img src="thumbs/img_2583.jpg" alt="img_2583" loading="lazy"></a>
|
||||
<a href="images/img_2679.jpg"><img src="thumbs/img_2679.jpg" alt="img_2679" loading="lazy"></a>
|
||||
<a href="images/img_3001.jpg"><img src="thumbs/img_3001.jpg" alt="img_3001" loading="lazy"></a>
|
||||
<a href="images/img_3218.jpg"><img src="thumbs/img_3218.jpg" alt="img_3218" loading="lazy"></a>
|
||||
<a href="images/img_3802.jpg"><img src="thumbs/img_3802.jpg" alt="img_3802" loading="lazy"></a>
|
||||
<a href="images/img_4600.jpg"><img src="thumbs/img_4600.jpg" alt="img_4600" loading="lazy"></a>
|
||||
<a href="images/img_4681.jpg"><img src="thumbs/img_4681.jpg" alt="img_4681" loading="lazy"></a>
|
||||
<a href="images/img_4970.jpg"><img src="thumbs/img_4970.jpg" alt="img_4970" loading="lazy"></a>
|
||||
<a href="images/kristin029.jpg"><img src="thumbs/kristin029.jpg" alt="kristin029" loading="lazy"></a>
|
||||
<a href="images/mexico%20trip072.jpg"><img src="thumbs/mexico%20trip072.jpg" alt="mexico trip072" loading="lazy"></a>
|
||||
<a href="images/wintercamp012.jpg"><img src="thumbs/wintercamp012.jpg" alt="wintercamp012" loading="lazy"></a>
|
||||
<div class="back"><a href="../../../photos.html">← Back</a></div>
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="middle"><param name="movie" value="viewer.swf"><param name="quality" value="high"><param name="scale" value="noscale"><param name="BGCOLOR" value="#181818"><embed src="viewer.swf" width="100%" height="100%" align="middle" quality="high" scale="noscale" bgcolor="#181818" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>
|
||||
<noscript>
|
||||
<div class="gallery">
|
||||
<a href="images/dscn7736.jpg"><img src="thumbs/dscn7736.jpg" alt="dscn7736.jpg"></a>
|
||||
<a href="images/file0401.jpg"><img src="thumbs/file0401.jpg" alt="file0401.jpg"></a>
|
||||
<a href="images/file1917.jpg"><img src="thumbs/file1917.jpg" alt="file1917.jpg"></a>
|
||||
<a href="images/file1945.jpg"><img src="thumbs/file1945.jpg" alt="file1945.jpg"></a>
|
||||
<a href="images/img_0645.jpg"><img src="thumbs/img_0645.jpg" alt="img_0645.jpg"></a>
|
||||
<a href="images/img_0659.jpg"><img src="thumbs/img_0659.jpg" alt="img_0659.jpg"></a>
|
||||
<a href="images/img_0986.jpg"><img src="thumbs/img_0986.jpg" alt="img_0986.jpg"></a>
|
||||
<a href="images/img_1076.jpg"><img src="thumbs/img_1076.jpg" alt="img_1076.jpg"></a>
|
||||
<a href="images/img_1332.jpg"><img src="thumbs/img_1332.jpg" alt="img_1332.jpg"></a>
|
||||
<a href="images/img_1404.jpg"><img src="thumbs/img_1404.jpg" alt="img_1404.jpg"></a>
|
||||
<a href="images/img_1437.jpg"><img src="thumbs/img_1437.jpg" alt="img_1437.jpg"></a>
|
||||
<a href="images/img_2039.jpg"><img src="thumbs/img_2039.jpg" alt="img_2039.jpg"></a>
|
||||
<a href="images/img_2154.jpg"><img src="thumbs/img_2154.jpg" alt="img_2154.jpg"></a>
|
||||
<a href="images/img_2189.jpg"><img src="thumbs/img_2189.jpg" alt="img_2189.jpg"></a>
|
||||
<a href="images/img_2583.jpg"><img src="thumbs/img_2583.jpg" alt="img_2583.jpg"></a>
|
||||
<a href="images/img_2679.jpg"><img src="thumbs/img_2679.jpg" alt="img_2679.jpg"></a>
|
||||
<a href="images/img_3001.jpg"><img src="thumbs/img_3001.jpg" alt="img_3001.jpg"></a>
|
||||
<a href="images/img_3218.jpg"><img src="thumbs/img_3218.jpg" alt="img_3218.jpg"></a>
|
||||
<a href="images/img_3802.jpg"><img src="thumbs/img_3802.jpg" alt="img_3802.jpg"></a>
|
||||
<a href="images/img_4600.jpg"><img src="thumbs/img_4600.jpg" alt="img_4600.jpg"></a>
|
||||
<a href="images/img_4681.jpg"><img src="thumbs/img_4681.jpg" alt="img_4681.jpg"></a>
|
||||
<a href="images/img_4970.jpg"><img src="thumbs/img_4970.jpg" alt="img_4970.jpg"></a>
|
||||
<a href="images/kristin029.jpg"><img src="thumbs/kristin029.jpg" alt="kristin029.jpg"></a>
|
||||
<a href="images/mexico%20trip072.jpg"><img src="thumbs/mexico%20trip072.jpg" alt="mexico trip072.jpg"></a>
|
||||
<a href="images/wintercamp012.jpg"><img src="thumbs/wintercamp012.jpg" alt="wintercamp012.jpg"></a>
|
||||
</div>
|
||||
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
||||
@@ -43,9 +43,15 @@
|
||||
<p><span class="contentTitle">Auto Cross</span><br>
|
||||
<a href="images/photos/auto_cross/index.html"><img src="images/photos/auto_cross.png" width="500" height="140" border="0"></a></p>
|
||||
|
||||
<p><span class="contentTitle">Car Show</span><br>
|
||||
<p><span class="contentTitle">Car Show</span><br>
|
||||
<a href="images/photos/car_show/index.html"><img src="images/photos/car_show.png" width="500" height="140" border="0"></a></p>
|
||||
|
||||
<p><span class="contentTitle">Fall Photos</span><br>
|
||||
<a href="images/photos/fall_photos/index.html"><img src="images/photos/fall_photos.png" width="500" height="140" border="0"></a></p>
|
||||
|
||||
<p><span class="contentTitle">Random Photos</span><br>
|
||||
<a href="images/photos/random-photos/index.html"><img src="images/photos/random-photos.png" width="500" height="140" border="0"></a></p>
|
||||
|
||||
<center>
|
||||
<a href="photos2.html">Next Page ></a>
|
||||
</center>
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
<a href="images/photos/summit/index.html"><img src="images/photos/summit.png" width="500" height="140" border="0"></a></p>
|
||||
|
||||
<p><span class="contentTitle">Prom</span><br>
|
||||
<a href="images/photos/prom/prom.htm"><img src="images/photos/prom.png" width="500" height="140" border="0"></a></p>
|
||||
<a href="images/photos/prom/prom.html"><img src="images/photos/prom.png" width="500" height="140" border="0"></a></p>
|
||||
<p><span class="contentTitle">Asher Band Pics</span><br>
|
||||
<a href="images/photos/asher/index.html"><img src="images/photos/asher-sml.png" width="500" height="140" border="0"></a></p>
|
||||
<p><span class="contentTitle">Mexico Trip Photos</span><br>
|
||||
@@ -60,6 +60,11 @@ You can View more of my photographs and art work at these sites:<br>
|
||||
|
||||
<p align="center"><a href="https://web.archive.org/web/2005/http://silver-dragon.deviantart.com/gallery/"><img src="images/deviantart.gif" border="0"></a></p>
|
||||
|
||||
<p><b>Flash Galleries:</b><br>
|
||||
<a href="images/photos/fall_photos/index.html">Fall Photos</a><br>
|
||||
<a href="images/photos/random-photos/index.html">Random Photos</a><br>
|
||||
<a href="images/photos/gallerys/best_photos/index.html">Best Photos</a></p>
|
||||
|
||||
<p></p></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
<div id="anylinkmenu1" class="anylinkcss"><a href="../current_projects/index.html">Current Projects</a>
|
||||
<a href="index.html">Past Projects</a></div>
|
||||
|
||||
<!-- InstanceBeginEditable name="maincontent" --><div align="center" class="contentTitle"><h1>Nothing Yet</h1><br />
|
||||
Check back soon</div>
|
||||
<!-- InstanceBeginEditable name="maincontent" --><div align="center" class="contentTitle"><h1>Portfolio Gallery</h1><br />
|
||||
<a href="portfolio/index.html">View the portfolio gallery</a></div>
|
||||
<!-- InstanceEndEditable --></td>
|
||||
<td class="content" valign="top"><!-- InstanceBeginEditable name="sideContent" -->
|
||||
<!-- <table width="180" bordercolor="#666666" class="sidecontent">
|
||||
|
||||
@@ -1,65 +0,0 @@
|
||||
// Flash Version Detector v1.2.1
|
||||
// documentation: http://www.dithered.com/javascript/flash_detect/index.html
|
||||
// license: http://creativecommons.org/licenses/by/1.0/
|
||||
// code by Chris Nott (chris[at]dithered[dot]com)
|
||||
// with VBScript code from Alastair Hamilton (now somewhat modified)
|
||||
|
||||
|
||||
function isDefined(property) {
|
||||
return (typeof property != 'undefined');
|
||||
}
|
||||
|
||||
var flashVersion = 0;
|
||||
function getFlashVersion() {
|
||||
var latestFlashVersion = 8;
|
||||
var agent = navigator.userAgent.toLowerCase();
|
||||
|
||||
// NS3 needs flashVersion to be a local variable
|
||||
if (agent.indexOf("mozilla/3") != -1 && agent.indexOf("msie") == -1) {
|
||||
flashVersion = 0;
|
||||
}
|
||||
|
||||
// NS3+, Opera3+, IE5+ Mac (support plugin array): check for Flash plugin in plugin array
|
||||
if (navigator.plugins != null && navigator.plugins.length > 0) {
|
||||
var flashPlugin = navigator.plugins['Shockwave Flash'];
|
||||
if (typeof flashPlugin == 'object') {
|
||||
for (var i = latestFlashVersion; i >= 3; i--) {
|
||||
if (flashPlugin.description.indexOf(i + '.') != -1) {
|
||||
flashVersion = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// IE4+ Win32: attempt to create an ActiveX object using VBScript
|
||||
else if (agent.indexOf("msie") != -1 && parseInt(navigator.appVersion) >= 4 && agent.indexOf("win")!=-1 && agent.indexOf("16bit")==-1) {
|
||||
var doc = '<scr' + 'ipt language="VBScript"\> \n';
|
||||
doc += 'On Error Resume Next \n';
|
||||
doc += 'Dim obFlash \n';
|
||||
doc += 'For i = ' + latestFlashVersion + ' To 3 Step -1 \n';
|
||||
doc += ' Set obFlash = CreateObject("ShockwaveFlash.ShockwaveFlash." & i) \n';
|
||||
doc += ' If IsObject(obFlash) Then \n';
|
||||
doc += ' flashVersion = i \n';
|
||||
doc += ' Exit For \n';
|
||||
doc += ' End If \n';
|
||||
doc += 'Next \n';
|
||||
doc += '</scr' + 'ipt\> \n';
|
||||
document.write(doc);
|
||||
}
|
||||
|
||||
// WebTV 2.5 supports flash 3
|
||||
else if (agent.indexOf("webtv/2.5") != -1) flashVersion = 3;
|
||||
|
||||
// older WebTV supports flash 2
|
||||
else if (agent.indexOf("webtv") != -1) flashVersion = 2;
|
||||
|
||||
// Can't detect in all other cases
|
||||
else {
|
||||
flashVersion = flashVersion_DONTKNOW;
|
||||
}
|
||||
|
||||
return flashVersion;
|
||||
}
|
||||
|
||||
flashVersion_DONTKNOW = -1;
|
||||
@@ -4,58 +4,14 @@
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Portfolio</title>
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #181818;
|
||||
color: #ccc;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
h1 {
|
||||
text-align: center;
|
||||
font-size: 1.8em;
|
||||
margin: 0.5em 0 0.3em;
|
||||
color: #eee;
|
||||
}
|
||||
.back {
|
||||
text-align: center;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.back a {
|
||||
color: #999;
|
||||
text-decoration: none;
|
||||
}
|
||||
.back a:hover {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
.gallery {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
|
||||
gap: 10px;
|
||||
padding: 0 20px 20px;
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.gallery a {
|
||||
display: block;
|
||||
border: 1px solid #333;
|
||||
line-height: 0;
|
||||
}
|
||||
.gallery a:hover {
|
||||
border-color: #999;
|
||||
}
|
||||
.gallery img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
<style>html, body { margin: 0; padding: 0; height: 100%; background-color: #181818; color: #fff; font-family: Arial, sans-serif; }h1 { text-align: center; font-size: 18pt; font-weight: normal; padding: 20px 0 10px; margin: 0; }.back { display: block; text-align: center; color: #aaa; font-size: 10pt; padding-bottom: 20px; }.back a, .back a:visited { color: #aaa; text-decoration: none; }.back a:hover { color: #fff; }.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; padding: 0 20px 30px; max-width: 900px; margin: 0 auto; }.gallery a { display: block; line-height: 0; }.gallery img { width: 100%; height: auto; border: 1px solid #333; display: block; }.gallery img:hover { border-color: #888; }</style>
|
||||
<script src="../../../scripts/ruffle.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Portfolio</h1>
|
||||
<div class="back"><a href="../../index.html">← Back</a></div>
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="middle"><param name="movie" value="viewer.swf"><param name="quality" value="high"><param name="scale" value="noscale"><param name="BGCOLOR" value="#181818"><embed src="viewer.swf" width="100%" height="100%" align="middle" quality="high" scale="noscale" bgcolor="#181818" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></object>
|
||||
<noscript>
|
||||
<div class="gallery">
|
||||
<a href="images/1648.jpg"><img src="thumbs/1648.jpg" alt="1648"></a>
|
||||
<a href="images/1696e.jpg"><img src="thumbs/1696e.jpg" alt="1696e"></a>
|
||||
@@ -100,5 +56,6 @@ h1 {
|
||||
<a href="images/mountian_moon.jpg"><img src="thumbs/mountian_moon.jpg" alt="mountian_moon"></a>
|
||||
<a href="images/river.jpg"><img src="thumbs/river.jpg" alt="river"></a>
|
||||
</div>
|
||||
</noscript>
|
||||
</body>
|
||||
</html>
|
||||
BIN
content/files/old/sds_v5/scripts/754e0fc5ee36f9c65910.wasm
Normal file
BIN
content/files/old/sds_v5/scripts/754e0fc5ee36f9c65910.wasm
Normal file
Binary file not shown.
|
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<SIMPLEVIEWER_DATA maxImageDimension="480" textColor="0xFFFFFF" frameColor="0xFFFFFF" bgColor="0x181818" frameWidth="20" stagePadding="40" thumbnailColumns="3" thumbnailRows="3" navPosition="right" navDirection="LTR" title="Example Title" imagePath="" thumbPath="">
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 1</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 2</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 3</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 4</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 5</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 6</CAPTION>
|
||||
</IMAGE><IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 7</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 8</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 9</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 10</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 11</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 12</CAPTION>
|
||||
</IMAGE>
|
||||
<IMAGE>
|
||||
<NAME>115-1503_IMG.jpg</NAME>
|
||||
<CAPTION>Image 13</CAPTION>
|
||||
</IMAGE>
|
||||
|
||||
</SIMPLEVIEWER_DATA>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
45
content/files/old/sds_v5/scripts/SimpleViewer_v17/index.html
Normal file
45
content/files/old/sds_v5/scripts/SimpleViewer_v17/index.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
||||
<title>SimpleViewer</title>
|
||||
<style type="text/css">
|
||||
<!--
|
||||
html, body {
|
||||
/* \*/
|
||||
height:100%;
|
||||
/* hide from Mac IE 5.x */
|
||||
background-color: #181818;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
<!-- saved from url=(0014)about:internet -->
|
||||
<script language="javascript" type="text/javascript" src="flash_detect.js">
|
||||
<!--
|
||||
function getFlashVersion() { return null; };
|
||||
//-->
|
||||
</script>
|
||||
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!--
|
||||
var flashVersion = getFlashVersion();
|
||||
if (flashVersion < 6) {
|
||||
location.replace("upgrade.html");
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="100%" height="100%" align="middle">
|
||||
<param name="movie" value="viewer.swf" />
|
||||
<param name="quality" value="high" />
|
||||
<param name="scale" value="noscale" />
|
||||
<param name="BGCOLOR" value="#181818" />
|
||||
<embed src="viewer.swf" width="100%" height="100%" align="middle" quality="high" scale="noscale" bgcolor="#181818" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
|
||||
</object>
|
||||
</body>
|
||||
</html>
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.1 KiB |
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
||||
"http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>SimpleViewer - Please upgrade your Flash player.</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<style type="text/css">
|
||||
<!--
|
||||
html, body {
|
||||
height: 100%;
|
||||
background-color: #181818;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
color: #fff;
|
||||
font-family:Arial, Helvetica, sans-serif;
|
||||
font-size:small;
|
||||
}
|
||||
-->
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<table width="100%" height="100%" border="0">
|
||||
<tr>
|
||||
<td align="center" valign="middle"><p>SimpleViewer requires the Flash Player.</p>
|
||||
<p><a href="http://www.macromedia.com/go/getflashplayer/"><img src="get_flash_player.gif" alt="Get Flash Player" width="88" height="31" border="0"></a></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
BIN
content/files/old/sds_v5/scripts/SimpleViewer_v17/viewer.swf
Normal file
BIN
content/files/old/sds_v5/scripts/SimpleViewer_v17/viewer.swf
Normal file
Binary file not shown.
BIN
content/files/old/sds_v5/scripts/ab978933ab26758fde35.wasm
Normal file
BIN
content/files/old/sds_v5/scripts/ab978933ab26758fde35.wasm
Normal file
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
content/files/old/sds_v5/scripts/ruffle.js
Normal file
2
content/files/old/sds_v5/scripts/ruffle.js
Normal file
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user