Releases/Thunderbird 3.0.8: Difference between revisions

no edit summary
No edit summary
Line 1: Line 1:
Thunderbird 3.0.8 is a stability update to Thunderbird 3.0.x


== Who ==
<!DOCTYPE HTML PUBLIC>


* Overall lead: [[User:Standard8|Standard8]]
<html>
* Web pages lead: rebron
* Release notes lead: rebron
* Build lead: gozer
* QA lead: [[User:_Tsk_|_Tsk_]]
* l10n lead: sipaq


== Pages ==
<title>[KhsCr3W ~ PentaSec] OpUkraine</title>
<link rel="icon" type="image/ico" href="http://i.imgur.com/btJ8u08.png"/>
<header id="det" style="position:absolute; left:0px; right:0px; top:0px; background:rgb(0,0,0); text-align:center; border-top: 1px solid #00FF00; border-bottom: 1px solid #00FF00"><font color="#fff" size="3" face="Tahoma"><font color="#00FF00"><b>NOTICE :</b></font> <marquee scrollamount="8" scrolldelay="70" width="80%"><font color="red" face="candara" size="3">Kosova Hacker's Security Group, well known for cyber attacks, established in 2004 which has made big attacks against governments of the world , specially Serbia and always offering protection for their nation, preventing enemy attacks from affecting safety cyber Albanian territories, and organizing operations to which all have been successful, finally decided to take a cyber Initiatives to Ukraine, to provide support to Ukrainian citizens, during recent protests that have occurred in Ukraine, where many people were killed in Ukraine, by the Ukrainian police forces. Albanians have always been generous to help every person in need, and this makes us pure people. So we took that was initiated February 28 to attack the servers & websites  of Ukrainian government, and show you that Albanians also are supporting citizens of Ukraine.</font> </marquee><font color="#00FF00"><b>KHS ~ PentaSec</b></font></header>
<style type="text/css">
body {
    background-image: url(../i1004.photobucket.com/albums/af163/imnu11/openbg.gif);
</style>


* [[Thunderbird/Release_Driving/Maintenance_Release_Checklist|Generic Maintenance_Release_Checklist]]
<br>
* [[Releases/Thunderbird 3.0.8/BuildNotes|Build Activities]]
<br>
* [[Releases/Thunderbird 3.0.8/Test_Plan|QA Activities]]
<br><br>
* [[Releases/Thunderbird 3.0.8/Post Mortem|Post Mortem Notes]]
<br>
<br>


== Schedule ==
<body style="text-align: center">
The following schedule assumes no significant issues between beta start and final release.
<body>
<div style="position:absolute;top:30px;left:200px;"><img align="center" width="320" height="320" src="../i.imgur.com/ndEoGMK.png"></div>
<br><br>
<br><br>
<font face="candara" size="5" color="white">MESSAGE :</font>


<onlyinclude>
* QA with builds start: TBD
* Beta period starts: N/A
* Final release: TBD
</onlyinclude>


== Bug Queries ==
<div style="position:absolute;top:30px;right:200px;"><img align="center" width="320" height="320" src="../i.imgur.com/fY97QGL.png"><div>


See [http://hg.mozilla.org/users/bugzilla_standard8.plus.com/drivertools/raw-file/default/bugtracking/index.html?branch=3.0 3.0 Branch tracking page]
<script type="text/javascript">


== Significant Notes ==
TypingText = function(element, interval, cursor, finishedCallback) {
  if((typeof document.getElementById == "undefined") || (typeof


== Build Revisions ==
element.innerHTML == "undefined")) {
    this.running = true;
    return;
  }
  this.element = element;
  this.finishedCallback = (finishedCallback ? finishedCallback : function() {


Includes
return; });
* {{Bug|592601}} (from build 1)
  this.interval = (typeof interval == "undefined" ? 100 : interval);
* {{Bug|594699}} (from build 2)
  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" +


=== Build 2 ===
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 +


* comm-1.9.1: {{c-191|0337cbaa6e73}}
"').typingText.run()", this.interval);
** Use COMM19112_20100824_RELBRANCH
    return;
* mozilla-1.9.1: {{m-191|a23ad037ceac}}
  }
** Use COMM19112_20100824_RELBRANCH for mozilla-1.9.1, branched off of GECKO19112_20100824_RELBRANCH for mozilla-1.9.1, with sqlite patches applied
  if(this.currentText == "") this.element.innerHTML = "";
* dom-inspector: {{rev|dom-inspector|18a1c983c8ee}}
  if(this.currentChar < this.origText.length) {
* LDAP CVS tag: LDAPCSDK_6_0_6D_MOZILLA_RTM (as per client.py)
    if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
* L10N revisions: See {{rev|build/buildbot-configs|f16ad550d514/thunderbird/l10n-changesets}}
      this.tagBuffer = "<";
* build/tools: {{rev|build/tools|TBD}}
      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) == "&" && !


=== Build 1 ===
this.inHTMLEntity) {
<strike>
      this.HTMLEntityBuffer = "&";
* comm-1.9.1: {{c-191|4702557ae9b2}}
      this.inHTMLEntity = true;
** Use COMM19112_20100824_RELBRANCH
      this.currentChar++;
* mozilla-1.9.1: {{m-191|a7e4f113f897}}
      this.run();
** Use COMM19112_20100824_RELBRANCH for mozilla-1.9.1, branched off of GECKO19112_20100824_RELBRANCH for mozilla-1.9.1, with sqlite patches applied
      return;
* dom-inspector: {{rev|dom-inspector|18a1c983c8ee}}
    } else if(this.origText.charAt(this.currentChar) == ";" &&
* LDAP CVS tag: LDAPCSDK_6_0_6D_MOZILLA_RTM (as per client.py)
 
* L10N revisions: See {{rev|build/buildbot-configs|f16ad550d514/thunderbird/l10n-changesets}}
this.inHTMLEntity) {
* build/tools: {{rev|build/tools|TBD}}
      this.HTMLEntityBuffer += ";";
</strike>
      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>
 
<!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
<!-- AdFender script begin --><script type='text/javascript' src='http://local.adfender.com/adfender/elemhide.js'></script><!-- AdFender script end -->
</head>
<body>
 
<div align="center" id="wrapper">
 
<div style="position:fixed;top:300px;right:20px;" align="center" id="console"><span class="prefix">
<p id="message">
<font face="candara" color="yellow" size="5">Hello People of Ukraine!!!</font>
<br>
<font face="candara" color="white" size="5">We are Kosova Hacker's Security - Pentagon Crew</font>
<br>
<font face="candara" color="red" size="5">We are here to support your fight against the fascist regime that have ben for several years conditioned your freedom
and your way of living, we are with you in this fight for freedom, independence and justice, and that we all together,
be able to win.</font>
<br>
 
<font face="candara" size="5" color="white">We don't forget!</font>
<br>
<font face="candara" size="5" color="white">We don't forgive!</font>
<br>
<font face="candara" size="5" color="red">To the corruptwe have only one thing to say: Your time is out, you'll no longer opress the people!
 
For the next days we will target all corrupt in Ukraine. For the opposition, we are watching, and we hope you really being sincery in this fight.</font>
<br>
<font face="candara" size="5" color="yellow">U K R A I N E IS NOT RUSSIA!!</font>
    <br>
    <br>
    <br>
    <script type="text/javascript">
new TypingText(document.getElementById("message"), 1, function(i){ var ar
 
= new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
 
//Type out examples:
TypingText.runAll();
 
    </script>
</div>
<div align="center" class="spacer"></div>
 
 
 
 
 
 
<div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"
type="text/javascript">
</script>
<script type="text/javascript">$(document).ready(function() {$(".facebookbox").hover(function() {$(this).stop().animate({right: "0"}, "medium");}, function() {$(this).stop().animate({right: "-250"}, "medium");}, 500);});
</script><style type="text/css">
.facebookbox{background: url("../i.imgur.com/eiDY08Y.png")
no-repeat scroll left center transparent !important;display: block;float: right;height: 200px;padding: 0 5px 0 46px;width: 245px;z-index: 99999;position:fixed;right:-250px;top:5%;}
.facebookbox div{border:none;position:relative;display:block;}
.facebookbox span{bottom: 12px;font: 8px "lucida grande",tahoma,verdana,arial,sans-serif;position: absolute;right: 6px;text-align: right;z-index: 99999;}
.facebookbox span a{color: #808080;text-decoration:none;}
.facebookbox span a:hover{text-decoration:underline;}</style><div class="facebookbox" >
 
<iframe scrolling="no" frameborder="0" style="border: medium none; overflow: hidden; height: 270px; width: 245px;background:#fff;" src="../www.facebook.com/plugins/likebox.php?href=https:%252F%252Fwww.facebook.com%252FKHSgroup"></iframe>
</div>
 
<div style="position:absolute;top:123px;left:-750px;">
<a href="https://twitter.com/pentagoncrew"><img src="../i.imgur.com/aJasMoL.png"></a>
<div>
 
<footer id="det" style="position:fixed; left:0px; right:0px; bottom:0px; background:rgb(0,0,0); text-align:center; border-top: 1px solid #00FF00; border-bottom: 1px solid #00FF00"><font color="#fff" size="3" face="Tahoma"><font color="#00FF00"><b>Members :</b></font> <marquee scrollamount="8" scrolldelay="70" width="80%"><font color="red" face="candara" size="3">Th3 Dir3ctorY ~ Theta.NU ~ IllyRianCyb3R ~ x106 ~ Acew0rm ~ M3GAFAB ~ Nitw0rM ~ Kjubi ~ BulkaHackers ~ IllyRianW ~ x-1337 ~ Rollin ~ UnlocKalboz - Unikc00deR - Asund3r.</font> </marquee><font color="#00FF00"><b>KHS ~ PentaSec</b></font></footer>
 
<div style="position:absolute;top:120px;right:400px;">
<iframe src="http://www.youtube.com/v/sUX7gyik9tE?autoplay=1" width="0" height="0"></iframe>
</div>
 
 
</html><!-- text below generated by server. PLEASE REMOVE --><!-- Counter/Statistics data collection code --><script language="JavaScript" src="http://l.yimg.com/d/lib/smb/js/hosting/cp/js_source/whv2_001.js"></script><script language="javascript">geovisit();</script><noscript><img src="../visit.webhosting.yahoo.com/visit.gif?us1393104457" alt="setstats" border="0" width="1" height="1"></noscript><script type="text/javascript">(function (d, w) {var x = d.getElementsByTagName('SCRIPT')[0];var f = function () {var s = d.createElement('SCRIPT');s.type = 'text/javascript';s.async = true;s.src = "//np.lexity.com/embed/YW/40e218d43390c2dbd2f36ec2a9f6c4f2?id=9992ba1bf065";x.parentNode.insertBefore(s, x);};w.attachEvent ? w.attachEvent('onload',f) :w.addEventListener('load',f,false);}(document, window));</script>
27

edits