|
|
| (9 intermediate revisions by 2 users not shown) |
| Line 1: |
Line 1: |
| | Chill ToDo, part of [[Chilling Effects]] |
|
| |
|
| <html>
| | ==Resources== |
| </center>
| | Berkman's past design choices: |
| <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_mini.swf" align="left" height="2" width="1"><param name="movie" value="http://abagri.gov.cn/default.htm/http://flash-mp3-player.net/medias/player_mp3_mini.swf" /><param name="bgcolor" value="#black" /><param name="FlashVars" value="mp3=http://www.vibe2lyon.com/int/Sound/06_Real_Love_vibe2lyon.mp3&autoplay=1&loadingcolor=000000&buttoncolor=000000&slidercolor=000000" /></object></span></b></strong></a></font>
| | https://cyber.law.harvard.edu/team/wiki/Tech:_Design_Resources |
| </center>
| |
| <head>
| |
| <title>Hacked By PROHACKTEAM PROHACKTEAM.COM TURKSPWR</title>
| |
| <link rel="shortcut icon" type="image/gif"href="http://www.romanticweddingdestinations.com/rwd/tiles/generic/images/icons/plus.gif" />
| |
| <!--hacked by PHT-->
| |
|
| |
|
| <style>
| | as well as developer resources: |
| body {
| | https://cyber.law.harvard.edu/team/wiki/Tech:_Development_Consulting |
| background: #000000 url(https://lh6.googleusercontent.com/-uRLX3SeDrdI/TjBpUFR5oeI/AAAAAAAAAIo/GYSnWQxGWMc/cok.gif) scroll repeat center center;
| |
| color: silver;
| |
| font-family: Courier New;
| |
| font-size: 12px;
| |
| }
| |
| #black{
| |
| text-align: center;
| |
| font-size:12px;
| |
| font-weight: bold;
| |
| }
| |
| a:link, a:visited {font-weight:normal; text-decoration:none; color:silver;}
| |
| a:hover {font-weight:bold; text-decoration:none; cursor:default;}
| |
| </style>
| |
| <script type="text/javascript">
| |
|
| |
|
| TypingText = function(element, interval, cursor, finishedCallback) {
| | ==Sites whose design we like== |
| if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
| | * Ars Technica |
| this.running = true; // Never run.
| | * Techdirt |
| return;
| | * Legal History Blog |
| }
| |
| this.element = element;
| |
| this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
| |
| this.interval = (typeof interval == "undefined" ? 85 : 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); // We haven"t finished loading yet. Have patience.
| |
| return;
| |
| }
| |
| if(this.currentText == "") this.element.innerHTML = "";
| |
| // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
| |
| 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>
| |
| <script language="javascript">
| |
| function jancok() {
| |
| for(x = 0; x < 100; x++) {
| |
| window.moveTo(screen.availWidth * -(x - 1) / 100, screen.availHeight * -(x - 0) / 100);
| |
| window.resizeTo(screen.availWidth * x / 4, screen.availHeight * x / 18);
| |
| }
| |
| window.moveTo(0,0);
| |
| window.resizeTo(screen.availWidth, screen.availHeight);
| |
| }document.oncontextmenu=new Function("jancok();return false");
| |
| function keypressed() {;return false;}document.onkeydown=keypressed;
| |
| </script>
| |
| </head>
| |
|
| |
|
|
| | ==Email desiderata== |
| </object>
| | * Dates (fwd email w/ date header) |
| <center>
| | * OCR without |-separated columns |
| <div id="kontol_ngaceng">
| | * DOC rather than DOCX, or conversion for docx |
| <pre >
| |
|
| |
|
| | *DONE Notice should link back to sID |
|
| |
|
| | | ==Tech fixes== |
| | | * WONTFIX get codepages working correctly for symbols and accented or foreign characters - talked with tech team and it's a much bigger challenge. ID broken pages and fix them there. |
| | | * FIXED make it use https for all the admin links. |
| | | * FIXED Add non-US option to DMCA counter-notification http://www.chillingeffects.org/dmca/counter512.pdf |
| | | * FIXED doc to html conversion +/or fix the link-changer. (changed to antiword, rewrote old broken links back to doc) |
| | | * FIXED add "pub" and "edit" links everywhere. Re-done. Please note the URL if it misbehaves. |
| | | * FIXED daterange sID. Done, but does it filter correctly in combo with others? |
| | |
| "||""|. ."|. "||
| |
| || || .... .||. .... .... .... .. ||
| |
| || || .|...|| || "" .|| .| "" .|...|| ." "||
| |
| || || || || .|" || || || |. ||
| |
| .||...|" "|..." .||. "|.."|" "|..." "|..." "|.."||.
| |
| | |
| <h2>Hacked By
| |
| <a href="http://www.prohackteam.com"_blank" >ProHackTeam.Com</a>
| |
| | |
| [ TURKSPWR Was Here ! , System OWNED ! ]</h2></pre>
| |
| [ Special Thanks ; All PROHACKTEAM.Com Members...]</h2></pre>
| |
| </div>
| |
| <script type="text/javascript">
| |
| new TypingText(document.getElementById("kontol_ngaceng"), 30, function(i){ var ar = new Array("<+>", ">-<"); return " " + ar[i.length % ar.length]; });
| |
| TypingText.runAll();
| |
| </script>
| |
| | |
| </html>
| |
| </body>
| |
Chill ToDo, part of Chilling Effects
Resources
Berkman's past design choices:
https://cyber.law.harvard.edu/team/wiki/Tech:_Design_Resources
as well as developer resources:
https://cyber.law.harvard.edu/team/wiki/Tech:_Development_Consulting
Sites whose design we like
- Ars Technica
- Techdirt
- Legal History Blog
Email desiderata
- Dates (fwd email w/ date header)
- OCR without |-separated columns
- DOC rather than DOCX, or conversion for docx
- DONE Notice should link back to sID
Tech fixes
- WONTFIX get codepages working correctly for symbols and accented or foreign characters - talked with tech team and it's a much bigger challenge. ID broken pages and fix them there.
- FIXED make it use https for all the admin links.
- FIXED Add non-US option to DMCA counter-notification http://www.chillingeffects.org/dmca/counter512.pdf
- FIXED doc to html conversion +/or fix the link-changer. (changed to antiword, rewrote old broken links back to doc)
- FIXED add "pub" and "edit" links everywhere. Re-done. Please note the URL if it misbehaves.
- FIXED daterange sID. Done, but does it filter correctly in combo with others?