--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>The SeaMonkey Project - FOSDEM 2006 - Mozilla Meeting</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+<!-- <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="xxx.html" title="Previous page"> -->
+ <link rel="next" href="slide_01.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>The SeaMonkey Project</h1>
+
+<div class="explanation">
+This presentation should give a rough overview of
+<ul>
+ <li>history - how the SeaMonkey Project came into place,</li>
+ <li>the current state of the project and the suite code,</li>
+ <li>and the current plans for SeaMonkey's future.</li>
+</ul>
+I hope there will be enough time left for discussion of this between slides and
+after the presentation.
+</div>
+
+<div class="sample">
+<p class="sampledesc">Speaker: Robert Kaiser <KaiRo@KaiRo.at></p>
+<div class="samplecontent">
+<ul class="small">
+ <li>Living in Steyr, Upper Austria, and attending Vienna University to become
+ a Chemistry and Physics teacher</li>
+ <li>Leading his own one-man-business in the IT services area since January 2006
+ (<a href="http://www.kairo.at/">KaiRo.at</a>)</li>
+ <li>Known as "KaiRo" on IRC</li>
+ <li>Member of the <a href="http://www.mozilla.org/projects/seamonkey/">SeaMonkey</a>
+ project management team
+ ("<a href="http://wiki.mozilla.org/SeaMonkey:Project_Organization#SeaMonkey_Council">SeaMonkey
+ Council</a>")</li>
+ <li>Head of MLP staff (<a href="http://www.mozilla.org/projects/l10n/">Mozilla
+ Localization Project</a>)</li>
+ <li>Maintainer of the SeaMonkey/Mozilla German Project
+ (<a href="http://www.seamonkey.at/">http://www.seamonkey.at/</a>) since
+ late 1999, first German Mozilla version was M12, released at 2000-01-01.
+ </li>
+ <li>Creator of <a href="http://www.kairo.at/download/mozskins">EarlyBlue and
+ LCARStrek themes</a></li>
+ <li>Contributing some smaller patches to the mozilla.org codebase, most of
+ them in UI and L10n areas, as well as SeaMonkey infrastructure.</li>
+</ul>
+</div>
+</div>
+
+<div class="sample">
+<p class="sampledesc">The slides</p>
+<div class="samplecontent small">
+This presentation was created for the
+<a href="http://www.fosdem.org/2006/index/dev_room_mozilla">European Mozilla
+Developer Meeting 2006</a> at <a href="http://www.fosdem.org/">FOSDEM</a> in
+Brussels.
+<br>The slides for this talk are written in HTML 4.01 Strict and CSS.
+<br>It helps a lot to turn on SeaMonkey's "Site Navigation Bar" for navigating
+through the slides. Click "Next" to start with the first slide from this index
+page. "Top" will take you back to this index from all the slides.
+<br>If you don't have such a clever navigation tool, there are "next" links on
+all slides that let you navigate through the whole presentation.
+<br>You can also use the <a href="toc.html">table of contents</a> to access
+all slides without the navigation bar.</b>
+<br>If you want to look through them later, see
+<a href="http://kairo.mozdev.org/slides/fosdem2006/">http://kairo.mozdev.org/slides/fosdem2006/</a>.
+<br>All slides and images © 02/2006 Robert Kaiser.
+</div>
+</div>
+
+<p class="forward"><a href="slide_01.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>INTRO - The SeaMonkey Project</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="start" href="index.html" title="Start">
+<style type="text/css">
+html { height: 100%; }
+body {
+ height: 100%;
+ background-color: -moz-Dialog;
+ background-image: none;
+ background-repeat: no-repeat;
+ background-position: center center;
+ padding: 0;
+}
+#splash {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ width: 390px;
+ height: 232px;
+ margin: auto;
+ opacity: 0;
+}
+#splash > a > img { border: none; }
+</style>
+<script type="text/javascript">
+var steps = 20;
+var seconds = 5;
+
+var runFade;
+var splash;
+var start;
+var cnt = 0;
+
+function setFade() {
+ splash = document.getElementById('splash');
+ if (splash.style.display == 'none') {
+ splash.style.opacity = 0;
+ cnt = 0;
+ splash.style.display = 'block';
+ start = new Date();
+ runFade = window.setInterval("fadeIn()", seconds*1000/steps);
+ }
+ else {
+ if (splash.style.display) {
+ start = new Date();
+ runFade = window.setInterval("fadeOut()", seconds*1000/steps);
+ }
+ else { splash.style.display = 'none'; }
+ }
+}
+
+function fadeIn() {
+ splash.style.opacity = cnt++/steps;
+ var now = new Date();
+ if ((splash.style.opacity >= 1) || (cnt > steps) || (now.getTime() > start.getTime() + 2*seconds*1000)) {
+ window.clearInterval(runFade);
+ }
+}
+
+function fadeOut() {
+ splash.style.opacity = cnt--/steps;
+ var now = new Date();
+ if ((splash.style.opacity <= 0) || (cnt < 0) || (now.getTime() > start.getTime() + 2*seconds*1000)) {
+ window.clearInterval(runFade);
+ splash.style.display = 'none';
+ }
+}
+</script>
+</head>
+<body onClick="setFade();">
+
+<div id="splash" style="display:none;">
+<a href="index.html"><img src="seamonkey-splash.png" alt="start"></a>
+</div>
+
+</body>
+</html>
--- /dev/null
+<?php
+// site branding
+$local_conf_no_wrap=ON;
+?>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey: "Ancient" History</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <!-- <link rel="previous" href="slide_01.html" title="Previous page"> -->
+ <link rel="next" href="slide_02.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>"Ancient" History</h1>
+
+<div class="explanation">
+<ul class="timeline">
+ <li><b>1998</b>:
+ <ul>
+ <li>January 23:
+ <ul>
+ <li>Netscape <span class="hilite">opening up development of Netscape
+ Communicator</span> internet suite</li>
+ <li><a href="http://www.mozilla.org/">Mozilla</a> project
+ <a href="http://wp.netscape.com/newsref/pr/newsrelease577.html">
+ founded</a> to bring new power to that product.</li>
+ </ul>
+ </li>
+ <li>March 31:
+ <ul>
+ <li><a href="http://wp.netscape.com/newsref/pr/newsrelease591.html?cp=nws04flh1">first
+ developer release of the source code</a> to Communicator</li>
+ </ul>
+ <li>Netscape internally looking for a <span class="hilite">codename</span>
+ for next big release (planned as version 5.0 at that time)
+ <ul>
+ <li>Developer voting</li>
+ <li>Surprising result: <span class="hilite">"ButtMonkey"</span> winning!
+ ("jenga" as run-in)</li>
+ <li>Netscape management deciding to use the similar sounding but comparably
+ harmless <span class="hilite">"SeaMonkey"</span>.</li>
+ <li>Codename getting heavily tied to suite development,
+ binaries getting released on project page with that codename.</li>
+ <li class="small">(Thanks to dveditz, Google cache and pseudorandom.org
+ IRC logs for helping us to find out about that.)</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ <li><b>2002</b>:
+ <ul>
+ <li>June 5:
+ <ul>
+ <li><span class="hilite"><a href="http://www.mozilla.org/releases/mozilla1.0.html">Mozilla 1.0</a></span>
+ <a href="http://www.mozillazine.org/articles/article2278.html">released</a></li>
+ <li>People <a href="http://www.schnitzer.at/mozparty/">partying</a> all
+ over the world</li>
+ </ul>
+ </li>
+ <li>April-August:
+ <ul>
+ <li>A few developers start project for <span class="hilite">standalone
+ browser</span></li>
+ <li>called "m/b", later "Phoenix", then "Firebird", now
+ "Firefox"</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ <li><b>2003</b>:
+ <ul>
+ <li>April 2:
+ <ul>
+ <li>mozilla.org publishes
+ <a href="http://www.mozilla.org/roadmap/roadmap-02-Apr-2003.html">new
+ roadmap</a></li>
+ <li>calls for <span class="hilite">fading out suite</span>
+ after Mozilla 1.4 in favor of standalone browser and mail</li>
+ <li>Suite would not be retired for the "foreseeable future" though</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+</ul>
+</div>
+
+<p class="forward"><a href="slide_02.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey: The "Big Bang"</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="slide_01.html" title="Previous page">
+ <link rel="next" href="slide_03.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>The "Big Bang"</h1>
+
+<div class="explanation">
+<ul class="timeline">
+ <li><b>March 2005</b>:
+ <ul>
+ <li>IRC and news discussions had led to staff discussing the suite's
+ future, and get stirred up even more due to
+ <a href="http://groups.google.com/groups?threadm=4229F899.5060002%40mozilla.org">recent
+ staff meeting minutes</a> that make clear that Mozilla Foundation wants to cease
+ suite development, some developers don't like that</li>
+ <li>March 10, 10am PST:
+ <ul>
+ <li>After discussion with some strong supporters on IRC, Boris Zbarsky ("bz")
+ posts an <a href="http://web.mit.edu/bzbarsky/Public/SeaMonkey.txt">open
+ letter to mozilla.org staff</a></li>
+ <li>"We are assuming that the Mozilla Foundation does not in fact plan to
+ have a Mozilla Suite release based on Gecko 1.8"</li>
+ <li>"In brief, we <span class="hilite">propose a development model similar
+ to that which Camino has</span> right now."</li>
+ <li>"Any release based on this development effort [...] is not branded as
+ the "Mozilla Suite"."</li>
+ </ul>
+ <li>March 10 - almost 1pm PST (!):
+ <ul>
+ <li><a href="http://www.mozilla.org/seamonkey-transition.html">Transition
+ plan</a> published by mozilla.org</li>
+ <li>Mozilla 1.7.x "will be the last set of Seamonkey products released and
+ maintained by the Mozilla Foundation"</li>
+ <li>"The Mozilla Foundation will provide infrastructure support [...] for
+ community members who wish to continue to develop Seamonkey."</li>
+ <li>Pointing to bz's letter: "<span class="hilite">We support this plan</span>
+ and will work with interested parties to figure out strategy."</li>
+ <li>"The dedication to the product, the initiative of the developers and
+ the proposal of the transition plan as a solution are all hallmarks of
+ the Mozilla community. We support this effort completely."</li>
+ <li>While press and public see the end of Mozilla suite as main point,
+ the core SeaMonkey developer community sees support for new project
+ as the most important message</li>
+ </ul>
+ </li>
+ <li>Following weeks:
+ <ul>
+ <li>signers of bz's letter and other supporters work together, mainly on
+ IRC, to organize the new project and get it
+ started</li>
+ <li><span class="hilite">Neil, biesi, IanN, CTho and KaiRo</span>
+ agree to take part in the new project's steering comitee, later dubbed the
+ "<span class="hilite"><a href="http://wiki.mozilla.org/SeaMonkey:Project_Organization#SeaMonkey_Council">SeaMonkey
+ Council</a></span>".</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+</ul>
+
+</div>
+
+<p class="forward"><a href="slide_03.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey: "Recent" History</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="slide_02.html" title="Previous page">
+ <link rel="next" href="slide_04.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>"Recent" History</h1>
+
+<div class="explanation">
+<ul class="timeline">
+ <li><b>March - July 2005</b>:
+ <ul>
+ <li>Search for a <a href="http://forums.mozillazine.org/viewtopic.php?t=234325">new
+ project name</a>:
+ <ul>
+ <li>76 proposed names in first list, 12 after closing out those with legal
+ implications</li>
+ <li>March 23: Decision by the Council on using
+ "<span class="hilite">SeaMonkey</span>" and releasing first final
+ version under 1.0 number</li>
+ <li>Waiting on MoFo legal team, trying to register as trademark</li>
+ </ul>
+ </li>
+ <li><span class="hilite">Suite rebranding</span>:
+ <ul>
+ <li>June 6: First (controlled) "leak" of new name into a small
+ rebranding patch</li>
+ <li>June 29: Attachment of the big rebranding patch, including
+ placeholder logo (designed by CTho)</li>
+ <li>July 2: rebranding lands, announcement up on new
+ <a href="http://www.mozilla.org/projects/seamonkey/">project
+ website</a></li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+ <li><b>July - December 2005</b>:
+ <ul>
+ <li>Looking for <a href="http://www.mozilla.org/projects/seamonkey/news.html#2005-07-28">new
+ logo</a> (July 28 -
+ September 26):
+ <ul>
+ <li><a href="http://dev.seamonkey.at/logo-submissions.html">197 different
+ proposals</a> submitted by Mozilla and SeaMonkey community members</li>
+ <li>hard decision process in dev community and Council</li>
+ <li>meanwhile releasing SeaMonkey 1.0 Alpha on September 15th using
+ placeholder artwork</li>
+ <li>December 2nd: announcing logo created by <span class="hilite">Czech
+ contributor Alex Butin</span> as winner (see
+ <a href="http://www.mozilla.org/projects/seamonkey/artwork.html">artwork
+ page</a>)</li>
+ </ul>
+ </li>
+ <li>December 19: SeaMonkey 1.0 Beta released (using new logo)</li>
+ </ul>
+ </li>
+ <li><b>January 2006</b>:
+ <ul>
+ <li>January 30:
+ <ul>
+ <li><span class="hilite"><a href="http://www.mozilla.org/projects/seamonkey/news.html#2006-01-30">SeaMonkey
+ 1.0</a></span> released</li>
+ <li>First stable release of new project</li>
+ <li>Joe User starts to migrate from Mozilla suite to SeaMonkey</li>
+ </ul>
+ </li>
+ </ul>
+ </li>
+</ul>
+</div>
+
+<p class="forward"><a href="slide_04.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey Project Overview - FOSDEM 2006</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="slide_03.html" title="Previous page">
+ <link rel="next" href="slide_05.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>SeaMonkey Project Overview</h1>
+
+<div class="sample">
+<p class="sampledesc">SeaMonkey Council</p>
+<div class="samplecontent">
+<ul>
+ <li>responsible for project and release mangement</li>
+ <li>can be contacted via <a href="mailto:seamonkey-council@mozilla.org">seamonkey-council@mozilla.org</a></li>
+</ul>
+<ul>
+ <li><b>Christian Biesinger (biesi)</b>
+ <ul>
+ <li>has been working on Mozilla for a few years</li>
+ <li>mostly works in Gecko code, also does UI patches occasionally</li>
+ <li>wrote a first plan to make Seamonkey use the "new toolkit"</li>
+ </ul>
+ </li>
+ <li><b>Robert Kaiser (KaiRo)</b>
+ <ul>
+ <li>head of MLP staff (Mozilla Localization Project)</li>
+ <li>German SeaMonkey localizer since late 1999 (M11/M12)</li>
+ <li>doing EarlyBlue and LCARStrek themes</li>
+ <li>some work on L10n- and theming-related stuff</li>
+ <li>caring a lot about project management</li>
+ <li>maintaining SeaMonkey branch release tinderbox machines</li>
+ </ul>
+ </li>
+ <li><b>Ian Neal (IanN)</b>
+ <ul>
+ <li>work on <span class="hilite">XUL/JS stuff</span> (mainly UI, some backend)</li>
+ <li>little bit of simple C++ stuff</li>
+ <li>peer reviews on help</li>
+ <li>actively involved in SeaMonkey development for about two years</li>
+ </ul>
+ </li>
+ <li><b>Neil Rashbrook (Neil)</b>
+ <ul>
+ <li>module owner of XPFE (most of the SeaMonkey-specific code)</li>
+ <li><span class="hilite">super-reviewer</span>, focussed on XPFE and MailNews</li>
+ <li>very involved in all SeaMonkey related development for years</li>
+ <li>official owner of SeaMonkey code (suite/ module in CVS)</li>
+ </ul>
+ </li>
+ <li><b>Christopher Thomas (CTho)</b>
+ <ul>
+ <li>Mozilla user for about 3 years</li>
+ <li>started as developer about a year and a half ago</li>
+ <li>interests mostly in Mozilla frontend</li>
+ <li>experienced with JS and C++</li>
+ <li>very active in organizing the new SeaMonkey group</li>
+ <li><span class="hilite">release engineer</span> for SeaMonkey</li>
+ </ul>
+ </li>
+</ul>
+</div>
+</div>
+
+<div class="sample">
+<p class="sampledesc">Developer Community</p>
+<div class="samplecontent">
+<ul>
+ <li>division into
+ <a href="http://www.mozilla.org/projects/seamonkey/project-areas.html">project
+ areas</a></li>
+ <li><span class="hilite">help wanted</span>: need some owners, more peers in
+ that list</li>
+ <li>second super-reviewer in the team: <span class="hilite">Peter Annema
+ (jag)</span></li>
+ <li><span class="hilite">Karsten Düsterloh (Mnyromyr)</span> is MailNews
+ owner</li>
+ <li>QA team led by <span class="hilite">Andrew Schultz (ajschult)</span></li>
+ <li><span class="hilite">Dan Veditz</span> still caring about security, along
+ with biesi and Neil</li>
+ <li>A bunch of other developers working with us and supporting us, more
+ wanted!</li>
+ <li>Discussion areas in <a href="irc://irc.mozilla.org/seamonkey">#seamonkey</a>
+ and <a href="news://news.mozilla.org/mozilla.dev.apps.seamonkey">m.d.a.seamonkey</a></li>
+</ul>
+</div>
+</div>
+
+<p class="forward"><a href="l10ntalk_05.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey - FOSDEM 2006</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="slide_04.html" title="Previous page">
+ <link rel="next" href="slide_06.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>Current State</h1>
+
+<div class="explanation">
+<ul>
+ <li><span class="hilite">SeaMonkey 1.0</span> statistics:
+ <ul>
+ <li>download count: 60751 (3 weeks, Feb 02-23)</li>
+ <li><small>that count doesn't include first 3 days, contributed/localized/GTK1 builds or direct FTP downloads</small></li>
+ <li>official builds for Windows, Mac OS X and Linux (GTK2 as default, plus GTK1)</li>
+ <li>available in US English and 13 localizations</li>
+ <li>contributed binary builds for Linux/x86_64, OS/2 and Solaris/SPARC</li>
+ </ul>
+ </li>
+ <li><span class="hilite">SeaMonkey 1.0</span> features (vs. Mozilla 1.7.x):
+ <ul>
+ <li>tab drag and drop</li>
+ <li>autoscroll support</li>
+ <li>SVG and <canvas></li>
+ <li>global inbox</li>
+ <li>multiple identities per account</li>
+ <li>spell check as you type (MailNews)</li>
+ <li>"Blazingly fast" back/forward</li>
+ <li>website reporter tool</li>
+ <li>force "new window" links into tabs</li>
+ <li>E4X</li>
+ <li>Gecko 1.8<span class="small">.0.1</a></li>
+ <li>more: <a href="http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.0/README.html">release notes</a></li>
+ </ul>
+ </li>
+ <li><span class="hilite">Current development</span>:
+ <ul>
+ <li>pure maintenance on 1.8.0 branch, similar rules for SeaMonkey 1.0.x as
+ for Firefox 1.5.0.x (Gecko 1.8.0.x)</li>
+ <li>targeting SeaMonkey 1.1 on 1.8 branch, keeping "old" backend unchanged</li>
+ <li>transition to/towards "new toolkit" infrastructure on trunk</li>
+ </ul>
+ </li>
+</ul>
+</div>
+
+<p class="forward"><a href="l10ntalk_06.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey - FOSDEM 2006</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="slide_05.html" title="Previous page">
+ <link rel="next" href="slide_end.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page">
+</head>
+<body>
+
+<h1>Future Plans</h1>
+
+<div class="sample">
+<p class="sampledesc">SeaMonkey 1.1 (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=315312">tracking bug</a>)</p>
+<div class="samplecontent">
+<ul>
+ <li>toolbar drag and drop
+ (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=15322">bug 15322</a>)
+ - may not be possible on 1.8 branch due to XBL problems</li>
+ <li>RSS reader for MailNews
+ (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=255834">bug
+ 255834</a>)</li>
+ <li>browser info bars
+ (<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=270443">bug
+ 270443</a>)</li>
+ <li>ChatZilla 0.9.70 - already landed</li>
+ <li>everything Gecko 1.8.1 gets us for free</li>
+ <li>maybe some other improvements that have patches in time</li>
+</ul>
+</div>
+</div>
+
+<div class="sample">
+<p class="sampledesc">SeaMonkey trunk ("1.5")</p>
+<div class="samplecontent">
+<ul>
+ <li>all features planned for 1.1</li>
+ <li><a href="http://wiki.mozilla.org/SeaMonkey:Toolkit_Transition">"toolkit
+ transition"</a> - use the "new toolkit" widgets</li>
+ <li>also try to migrate to much of the new architecture used in standalone
+ apps</li>
+ <li>maybe make steps towards using XULRunner</li>
+ <li>use "source L10n" approach (build localized builds from CVS,
+ <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=286110">bug
+ 286110</a>)</li>
+ <li>consolidate SeaMonkey-specific UI and code in suite/ directory of
+ mozilla.org repository</li>
+ <li>everything Gecko 1.9 has for us, mainly the big cairo transition</li>
+</ul>
+</div>
+</div>
+
+<p class="forward"><a href="l10ntalk_end.html">next</a></p>
+
+</body>
+</html>
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey - FOSDEM 2006</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+ <link rel="first" href="slide_01.html" title="First page">
+ <link rel="previous" href="slide_04.html" title="Previous page">
+<!-- <link rel="next" href="slide_05.html" title="Next page">
+ <link rel="last" href="slide_end.html" title="Last page"> -->
+</head>
+<body>
+
+<h1>Open Discussion</h1>
+
+<div class="sample">
+<p class="sampledesc">Thanks for your attention.</p>
+<div class="samplecontent">
+We should have some time for discussion now.
+<ul>
+ <li>Any open questions?</li>
+ <li>Any unmentioned issues?</li>
+ <li>Anyone wanting to help us?</li>
+ <li>Anything I forgot to mention?</li>
+</ul>
+</div>
+</div>
+
+</body>
+</html>
--- /dev/null
+/**************************
+ * styles for talk slides *
+ * by Robert Kaiser *
+ * <kairo@kairo.at> *
+ * (for FOSDEM 2006) *
+ **************************/
+
+
+/***** base style *****/
+
+body {
+ margin: 0px;
+ padding: 3px;
+ border: 0px;
+ font-family: Arial,Helvetica,sans-serif;
+ font-size: 2em;
+ color: black;
+ background-color: white;
+ background-image: url('seamonkey64.png');
+ background-repeat: no-repeat;
+ background-position: 1em 1em;
+}
+
+ul {
+ padding-left: 1.2em;
+}
+
+/***** headers *****/
+
+h1 {
+ margin: 0.5em;
+ font-size: 2em;
+ font-weight: bold;
+ text-align: center;
+}
+
+h2 {
+ margin: 0.5em;
+ font-size: 1.75em;
+ font-weight: bold;
+ text-align: center;
+}
+
+h3 {
+ margin: 0.5em;
+ font-size: 1.5em;
+ font-weight: bold;
+ text-align: center;
+}
+
+h4 {
+ margin: 0.5em;
+ font-size: 1.3em;
+ font-weight: bold;
+ text-align: left;
+}
+
+/***** boxes *****/
+
+div.explanation {
+ margin: 1em;
+ padding: 0.5em;
+ border: 1px solid grey;
+ background-color: #FFFFF8;
+}
+
+div.sample {
+ margin: 1em;
+ padding: 0px;
+ border: 1px solid grey;
+ background-color: #FFF8F8;
+}
+
+div.samplecontent {
+ margin: 0px;
+ padding: 0.5em;
+ border: 0px;
+ border-top: 1px solid grey;
+ background-color: #F8F8FF;
+}
+
+p.sampledesc {
+ margin: 0.5em;
+ font-weight: bold;
+}
+
+/***** navigation *****/
+
+p.forward {
+ text-align: right;
+ font-size: 0.75em;
+ margin: 0em 1.5em;
+}
+
+/***** misc formatting *****/
+
+span.hilite {
+ font-weight: bold;
+ color: #FF8080;
+}
+
+pre.border {
+ border: 1px solid #FF8080;
+ padding: 0.5em;
+}
+
+ul.timeline > li {
+ margin: 0.25em 0;
+}
+
+ul.timeline > li > ul > li {
+ margin-top: 0.2em;
+}
+
+ul.timeline > li > ul > li > ul > li {
+ margin-top: 0.1em;
+}
+
+ul.bugs > li {
+ list-style-image:url("bug.png");
+ margin: 0.5em 0;
+}
+
+/***** small stuff *****/
+
+.small {
+ font-size: 0.75em;
+}
+
+ul.small,
+.small ul {
+ margin: 0px;
+ padding: 0px;
+ border: 0px;
+ margin: 0px 0px 0px 1em;
+}
+
+ul.small > li
+.small ul > li {
+ margin: 0px;
+ padding: 0px;
+ border: 0px;
+}
\ No newline at end of file
--- /dev/null
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15">
+ <meta name="Author" content="KaiRo - Robert Kaiser">
+ <title>SeaMonkey: Table of Contents - FOSDEM 2006</title>
+ <link rel="stylesheet" type="text/css" href="slides2006.css">
+ <link rel="contents" href="index.html" title="Contents">
+ <link rel="index" href="toc.html" title="Overview">
+ <link rel="start" href="index.html" title="Start">
+</head>
+<body>
+
+<h1>Table of Contents: The SeaMonkey Project</h1>
+
+<div class="explanation">
+The following slides can be found in that presentation:
+<ul>
+ <li><a href="index.html">Start page</a></li>
+ <li><a href="slide_01.html">"Ancient" History</a></li>
+ <li><a href="slide_02.html">The "Big Bang"</a></li>
+ <li><a href="slide_03.html">"Recent" History</a></li>
+ <li><a href="slide_04.html">SeaMonkey Project Overview</a></li>
+ <li><a href="slide_05.html">Current State</a></li>
+ <li><a href="slide_06.html">Future Plans</a></li>
+ <li><a href="slide_end.html">Open Discussion</a></li>
+</ul>
+</div>
+
+</body>
+</html>