FreeBSD Bugzilla – Attachment 193631 Details for
Bug 221425
[NEW PORT] x11/alttab: Task switcher for minimalistic window managers
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
indonesia
4.html (text/plain), 14.66 KB, created by
kepo123
on 2018-05-23 10:39:40 UTC
(
hide
)
Description:
indonesia
Filename:
MIME Type:
Creator:
kepo123
Created:
2018-05-23 10:39:40 UTC
Size:
14.66 KB
patch
obsolete
><html xmlns="http://www.w3.org/1999/xhtml"> > <link rel='shortcut icon' href='https://scontent-a-sin.xx.fbcdn.net/hphotos-xpa1/v/t1.0-9/15487_671175589647018_4705148860226276746_n.jpg?oh=9b204232fa662d4fb206f6b8c64f68d4&oe=54E0020D' /> > <title>.:: Mr.Froggy ::. </title> > <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> > <style type="text/css"> > > > *,html,body,div,p,h2{padding: 0px;margin: 4px;}body{background: url("http://cdn.wonderfulengineering.com/wp-content/uploads/2016/01/black-wallpaper-4.jpg");}#container{margin: 0 auto;width: 980px;padding-top: 40px;}#content-container{float: left;width: 980px;}#content{clear: left;float: left;width: 581px;padding: 20px 0 20px 0;margin: 0 0 0 30px;play: inline;color: #333;}#content h2 {font-family: Cambria;font-size: 170px;}#aside{float: right;width: 348px;padding: 0px;display: inline;background-image: url('http://');height: 376px;}.hacker{float: right;font-family: Cambria;font-size: 30px;font-weight: bold;}.notes{padding-top: 90px;line-height: 1.3em;font-weight: bold;font-size: 16px;font-family: "Courier New";}.contact{padding-top: 30px;font-size: 18px;font-family: "Courier New", Courier, monospace;font-weight: bold;color: #800000;}#music{padding: 80px 80px 0px 0px;float: right;clear: right;}.STYLE1 { > padding-top: 20px; > line-height: 1.3em; > font-weight: bold; > font-size: 15px; > font-family: "Courier New"; > border-width: 100; > width: 900px; > } > .STYLE4 {color: #990000} > .STYLE5 {color: #00FF00} > .STYLE9 {color: #33FF00} > body,td,th { > color: #FFFFFF; > } > .STYLE10 {color: maroon} > .STYLE11 {color: #FF0000} > </style> > </head> > <script type="text/javascript">/*<![CDATA[*/ > TypingText = function(element, interval, cursor, finishedCallback) { > > > > if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) { > > > > this.running = true; > > > > return; > > > > } > > > > this.element = element; > > > > this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; }); > > > > this.interval = (typeof interval == "undefined" ? 100 : interval); > > > > this.origText = this.element.innerHTML; > > > > this.unparsedOrigText = this.origText; > > > > this.cursor = (cursor ? cursor : ""); > > > > this.currentText = ""; > > > > this.currentChar = 0; > > > > this.element.typingText = this; > > > > if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++; > > > > TypingText.all.push(this); > > > > this.running = false; > > > > this.inTag = false; > > > > this.tagBuffer = ""; > > > > this.inHTMLEntity = false; > > > > this.HTMLEntityBuffer = ""; > > > > } > > > > TypingText.all = new Array(); > > > > TypingText.currentIndex = 0; > > > > TypingText.runAll = function() { > > > > for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run(); > > > > } > > > > TypingText.prototype.run = function() { > > > > if(this.running) return; > > > > if(typeof this.origText == "undefined") { > > > > setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); > > > > return; > > > > } > > > > if(this.currentText == "") this.element.innerHTML = ""; > > > > if(this.currentChar < this.origText.length) { > > > > if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) { > > > > this.tagBuffer = "<"; > > > > this.inTag = true; > > > > this.currentChar++; > > > > this.run(); > > > > return; > > > > } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) { > > > > this.tagBuffer += ">"; > > > > this.inTag = false; > > > > this.currentText += this.tagBuffer; > > > > this.currentChar++; > > > > this.run(); > > > > return; > > > > } else if(this.inTag) { > > > > this.tagBuffer += this.origText.charAt(this.currentChar); > > > > this.currentChar++; > > > > this.run(); > > > > return; > > > > } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) { > > > > this.HTMLEntityBuffer = "&"; > > > > this.inHTMLEntity = true; > > > > this.currentChar++; > > > > this.run(); > > > > return; > > > > } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) { > > > > this.HTMLEntityBuffer += ";"; > > > > this.inHTMLEntity = false; > > > > this.currentText += this.HTMLEntityBuffer; > > > > this.currentChar++; > > > > this.run(); > > > > return; > > > > } else if(this.inHTMLEntity) { > > > > this.HTMLEntityBuffer += this.origText.charAt(this.currentChar); > > > > this.currentChar++; > > > > this.run(); > > > > return; > > > > } else { > > > > this.currentText += this.origText.charAt(this.currentChar); > > > > } > > > > this.element.innerHTML = this.currentText; > > > > this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : ""); > > > > this.currentChar++; > > > > setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); > > > > } else { > > > > this.currentText = ""; > > > > this.currentChar = 0; > > > > this.running = false; > > > > this.finishedCallback(); > > > > } > > > > } > > > > > > > > /*]]>*/ > </script> > <body onLoad="animate();start()" onresize="resize()" onorientationchange="resize()" onmousedown="context.fillStyle='rgba(0,0,0,'+opacity+')'" onmouseup="context.fillStyle='rgb(0,0,0)'"> > <p class="STYLE1" id="message"> > <font color="aqua">root@world:~#</font><span class="STYLE11">Please Read Me..!!!</span><br /> > <a href="https://www.facebook.com/groups/Dark.Defence/">Sitem LOW!!!</a> !!<br /> > <font color='aqua'><i>" Hacked By : Mr.Froggy"</i></font><br /><br /> > <font color="yellow">fuck: </font><span class="STYLE11">SISTEM LOW!!..!!! :D </span><br /> > <font color="red">maafin min saya cuma kasih tau sistem diperbaiki ini masih ada celah ..!</font> <font color="red"></font><font > color="red"database dah km backup ></font>Selamat Siang..!!<font color="red">sistem administation.. :D<font > /> <br /> > <font color="aqua">root@world:~# </font><span class="STYLE11">Jus't Test our security</span><br /> > <font color="aqua">Jadilah teman yang selalu ada disaat susah n' senang<br /><br /> > <span class="STYLE9">[+] YAh:)</span><br /> > <span class="STYLE9">[+] sistem mu kurang nih</span><br /> > <span class="STYLE9">[+] diperbaiki lagi yah buar jos</span><br /> > <span class="STYLE9">[+] Cuma mau tes site doank kami Sistem Administration</span><br /> > <span class="STYLE9">[+] makasih dah segitu aja</span><br /> > <span class="STYLE9">[+] jangan biarkan hacker yang lain sentuh web kamu :) </span><br /> > <span class="STYLE9">[+] CUKUP SAYA AJA YANG SENTUH :V</span><br /> > <span class="STYLE9">[+] TOCHED BY Mr.Froggy :D</span><br /> > <font color="aqua">Offical groups : </font><span class="STYLE11">~ Sistem Administration---------Anonymous Cyber Team-----Hacker Patah Hati--------Attacker Alone Cyber ~</span><br /> > <p class="notes"> </p> > <br /> > <script language=JavaScript type=text/javascript><!--// Method-5 animation script (compressed) > /***** initialize global film variables ******/ > var frames = 31; // <---- total number of pictures in film > var delay = 90; // <---- delay after each frame > var color = "brown"; // <---- Color of cat > var changecol = false; // <---- Randomly change color of cat? If true the cat will change colors if false the color of the cat will be the value of the color variable. > var move_cat = true; // <---- Move cat? If true the cat will move side to side. If false the cat will stay in one place. > var cat_fontsize = 10; // <---- In pixels > > /***** initialize anim screen position (in pixels) *****/ > > var topp = 50; // <---- window position bottom > var left = (move_cat)?-20:-10; // <---- window position left > var width = 300; // <---- window width > var height = 187; // <---- window height > > > /***** initialize anim control variables *****/ > > var posi = 0; // <---- actual picture position (frame counter) > var prev = 1; // <---- previous picture number > var run = true; // <---- boolean : true (?????) or !true (?????) > > > /***** initialize style sheets ****/ > > document.write("<" + "style type='text/css'><" + "!-- "); > for (i = 0; i <= frames; i++) { > if (move_cat) { > left = left + 2; > } > document.write("#cat" + i + " {position:absolute; color:" + color + "; font-size:" + cat_fontsize + "px; left:" + left + "%; top:" + topp + "px; width:" + width + "px; height:" + height + "px; z-index:" + i + "; visibility:hidden}"); > } > document.write("--" + "><" + "/style>"); > > /******* animation module ******/ > function change_color() { > var colors = new Array("#6C2DC7", "#00FFFF", "#00FF00", "#FFFF00", "#FF0000", "#FF00FF", "#1589FF", "#8D38C9", "#E3319D", "#6C2DC7", "#7E354D", "#736AFF", "#306754", "#E45E9D", "#000099", "#33CC00", "#25A0C5"); > var randomnum = Math.floor(Math.random() * 17) > var random_color = colors[randomnum]; > for(i=0;i<=frames;i++) { > if(i==0) { > > } > else { > document.getElementById('cat' + i).style.color = random_color; > } > } > } > > function animate() { > posi = posi + 1; > if (posi > frames) { > if (run) { > if (changecol && move_cat) { > setTimeout("animate2(posi-1, prev); change_color();", delay); > } else if (changecol && !move_cat) { > posi = 1; > setTimeout("animate(); change_color();", delay); > } else if (!changecol && move_cat) { > setTimeout("animate2(posi-1, prev);", delay); > } else if (!changecol && !move_cat) { > posi = 1; > setTimeout("animate();", delay); > } > } > } else { > document.getElementById("cat"+ prev).style.visibility = 'hidden'; > document.getElementById("cat"+ posi).style.visibility = 'visible'; > prev = posi; > if (run) setTimeout("animate()", delay); > } > } > > function animate2(posi2, prev2) { > posi = posi2 - 1; > if (posi < 1) { > if (run) { > if (changecol) { > setTimeout("animate(); change_color();", delay); > } else { > setTimeout("animate();", delay); > } > } > } else { > document.getElementById("cat"+ prev).style.visibility = 'hidden'; > document.getElementById("cat"+ posi).style.visibility = 'visible'; > prev = posi; > if (run) setTimeout("animate2(posi, prev-1)", delay); > } > } > //--></SCRIPT> > <DIV id=cat1> > <PRE> > <iframe width="1" height="1" src="https://www.youtube.com/embed/_oEi9Se6MlA?rel=0&autoplay=1&loop=1&playlist=_oEi9Se6MlA" frameborder="0" allowfullscreen></iframe> ></html> ><body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'> ><script src='http://yourjavascript.com/1171704334/efek-salju-faisal.js' type='text/javascript'/></script> > > ></PRE> > </DIV> > <script type="text/javascript">/*<![CDATA[*/ > new TypingText(document.getElementById("message"), 40, function(i){ var ar = new Array("_", " ", "_", " "); return " " + ar[i.length % ar.length]; }); > > > > > > > > //Type out examples: > > > > TypingText.runAll(); > > > > /*]]>*/ > > </script> ><script type="text/javascript"> //<![CDATA[
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 221425
:
185297
| 193631