starting fresh
[gitmo/moose-website.git] / index.html
diff --git a/index.html b/index.html
deleted file mode 100644 (file)
index 4b1b9db..0000000
+++ /dev/null
@@ -1,246 +0,0 @@
-<html>
-<head>
-<title>Moose - A postmodern object system for Perl 5</title>
-<link rel="stylesheet" href="css/style.css" type="text/css" />
-<script language="javascript">
-function show_section (section_name) {
-    var el = document.getElementById(section_name);
-    if (el.style.display == 'none') {
-        el.style.display = 'block';
-    }
-    else {
-        el.style.display = 'none';
-    }
-}
-</script>
-</head>
-<body bgcolor="#EDDBB4" topmargin="0" leftmargin="0">
-
-<table cellspacing="0" cellpadding="0" border="0" align="center" width="600">
-<tr>
-<td align="center"><img src="images/header.jpg" /></td>
-</tr>
-<tr>
-<td bgcolor="#AB9974">
-<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr>
-    <td><img src="images/top_left.jpg" alt="" width="21" height="21" border="0" /></td>
-    <td align="right"><img src="images/top_right.jpg" alt="" width="21" height="21" border="0" /></td>
-</tr></table>
-
-<div id="content">
-<p class="description">
-Moose is a <a target="_blank" href="http://www.perl.com/pub/a/1999/03/pm.html">postmodern
-object system</a> for Perl 5 that takes the tedium out of writing object-oriented Perl.
-It borrows all the best features from Perl 6, CLOS (LISP), Smalltalk, Java, BETA, OCaml,
-Ruby and more, while still keeping true to its Perl 5 roots.
-</p>
-<p class="description">
-Moose is <i>100% production ready</i> and in heavy use in a number of systems and growing every day.
-Try it today!
-</p>
-<p>
-<ul class="root_list">
-
-    <li><a class="list_header" onfocus="this.blur()" href="javascript:void(0)" onclick="show_section('download')">Download</a></li>
-    <ul class="sub_list" id="download">
-        <li class="list_sub_header">CPAN</li>
-        <ul>
-            <li><a target="_blank" href="http://search.cpan.org/dist/Moose/">Moose</a></li>
-            <li><a target="_blank" href="http://search.cpan.org/dist/Task-Moose/">Task::Moose</a> - A collection of excellent Moose extensions</li>
-            <li><a target="_blank" href="http://search.cpan.org/dist/Class-MOP/">Class::MOP</a> - The underlying meta object protocol upon which Moose is built</li>
-            <li><a target="_blank" href="http://search.cpan.org/search?query=MooseX&mode=dist">MooseX::*</a> - The Moose extensions</li>
-            <li><a target="_blank" href="http://cpants.perl.org/dist/used_by/Moose">CPAN Modules which use Moose</a></li>
-        </ul>
-        <li class="list_sub_header">Git Repository</li>
-        <ul>
-            <li>You can grab a copy of the Moose repository by typing: <tt>git clone git://jules.scsys.co.uk/gitmo/Moose.git</tt></li>
-            <li><a target="_blank" href="https://jules.scsys.co.uk/gitweb/gitweb.cgi">Gitweb view</a></li>
-        </ul>
-    </ul>
-
-    <li><a class="list_header" onfocus="this.blur()" href="javascript:void(0)" onclick="show_section('support')">Support</a></li>
-    <ul class="sub_list" id="support">
-        <li>#moose on irc.perl.org</li>
-        <li>Subscribe to <a href="mailto:moose-subscribe@perl.org">moose@perl.org</a>, or read the <a target="_blank" href="http://news.gmane.org/gmane.comp.lang.perl.moose">gmane archive</a></li>
-        <li><a target="_blank" href="http://github.com/perigrin/perl-moose.tmbundle">Moose TextMate bundle</a></li>
-        <li><a target="_blank" href="http://users.ox.ac.uk/~oliver/data/files/moose-quick-ref.pdf">Moose quick-ref card</a></li>
-    </ul>
-
-    <li><a class="list_header" onfocus="this.blur()" href="javascript:void(0)" onclick="show_section('articles')">Articles</a></li>
-    <ul class="sub_list" id="articles">
-
-        <li class="list_sub_header">2009 Articles</li>
-        <ul>
-            <li><a target="_blank" href="http://www.dmclaughlin.com/2009/05/15/chained-accessors-in-moose/">David McLaughlin experiments with extending Moose for MooseX::ChainedAccessors</a></li>
-            <li><a target="_blank" href="http://blog.sartak.org/2009/05/parameterized-roles.html">Shawn M Moore explains parameterized roles</a></li>
-            <li><a target="_blank" href="http://jjnapiorkowski.vox.com/library/post/top-ten-great-things-about-perl-moose-postmodern-object-system.html?_c=feed-atom">John Napiorkowski lists ten great things about Moose</a></li>
-            <li><a target="_blank" href="http://our.coldhardcode.com/jshirley/2009/05/another-reason-i-love-perl.html">Jay Shirley dotes on MooseX::MultiMethods</a></li>
-            <li><a target="_blank" href="http://www.modernperlbooks.com/mt/2009/05/perl-roles-versus-duck-typing.html">chromatic contrasts roles and duck-typing</a></li>
-            <li><a target="_blank" href="http://use.perl.org/~Ovid/journal/38885">Ovid discusses role problems and possible solutions</a></li>
-            <li><a target="_blank" href="http://samcrawley.wordpress.com/2009/05/03/getting-the-hang-of-moose-roles/">Sam Crawley summarizes his experience with roles</a></li>
-            <li><a target="_blank" href="http://blog.sartak.org/2009/05/perl-critic-dynamic-moose.html">Shawn M Moore discusses Perl::Critic for Moose and linting with the MOP</a></li>
-            <li><a target="_blank" href="http://babyl.dyndns.org/techblog/2009/05/moose-attribute-meta-meddling.html">Yanick Champoux meddles with extending Moose attributes</a></li>
-            <li><a target="_blank" href="http://www.modernperlbooks.com/mt/2009/05/perl-roles-versus-inheritance.html">chromatic contrasts roles and inheritance</a></li>
-            <li><a target="_blank" href="http://use.perl.org/~Ovid/journal/38880">Ovid lists some best practices for role-based refactoring</a></li>
-            <li><a target="_blank" href="http://chris.prather.org/perl/moose-dependencies-a-lurid-tale/">Chris Prather justifies each of Moose's dependencies</a></li>
-            <li><a target="_blank" href="http://zerothorder.blogspot.com/2009/04/chopping-proteins-with-moose.html">Bruno Vecchi praises Moose for making his protein analysis code easier</a></li>
-            <li><a target="_blank" href="http://blog.sartak.org/2009/04/new-moose-warning-and-new-moose-critic.html">Shawn M Moore explains role composition and some bumps in the Moose design process</a></li>
-            <li><a target="_blank" href="http://use.perl.org/~Ovid/journal/38863">Ovid praises roles and their happy acceptance at the BBC</a></li>
-            <li><a target="_blank" href="http://perldition.org/articles/Implementing%20Typed%20Lexical%20Variables.pod">Florian Ragwitz walks through the marriage of MooseX::Types with Lexical::Types</a></li>
-            <li><a target="_blank" href="http://use.perl.org/~Ovid/journal/38862">Ovid eschews inheritance in favor of roles</a></li>
-            <li><a target="_blank" href="http://www.modernperlbooks.com/mt/2009/04/the-why-of-perl-roles.html">chromatic on The Why of Perl Roles</a></li>
-            <li><a target="_blank" href="http://chris.prather.org/why-moose-is-post-modern/">Chris Prather rationalizes Moose's "post modern" label</a></li>
-            <li><a target="_blank" href="http://jjnapiorkowski.vox.com/library/post/why-i-use-moose-perls-post-modern-object-system.html?_c=feed-atom">John Napiorkowski on why he uses Moose</a></li>
-            <li><a href="http://www.catalyzed.org/2009/04/catalyst-58-released.html">Tomas Doran interview about the new Moose-based Catalyst</a></li>
-            <li><a href="http://use.perl.org/~Ovid/journal/38785">Ovid praises role-based refactoring</a></li>
-            <li><a target="_blank" href="http://blog.urth.org/2009/04/moose-docs-grant-wrap-up.html">Dave Rolsky's post-mortem on his Moose documentation grant</a> (<a href="http://www.perlfoundation.org/dave_rolsky_moose_docs">sponsored by the Perl Foundation</a>)</li>
-            <li><a target="_blank" href="http://blog.jrock.us/articles/Unshortening%20URLs%20with%20Modern%20Perl.pod">Jonathan Rockway uses many modern Moose extensions exemplifying Modern Perl</a></li>
-            <li><a target="_blank" href="http://use.perl.org/~acme/journal/38554?from=rss">L&eacute;on Brocard summarizes London.pm's "What is Moose and why is it the future?" meeting</a></li>
-        </ul>
-
-        <li class="list_sub_header">2008 Articles</li>
-        <ul>
-            <li><a target="_blank" href="http://blog.jrock.us/articles/Liskov,%20Reuse,%20Inheritance,%20and%20Roles.pod">Jonathan Rockway discusses roles, inheritance, and Liskov's substitution principle</a></li>
-            <li><a target="_blank" href="http://broadcast.oreilly.com/2008/11/beginners-introduction-to-obje.html">chomatic suggests Moose and Mouse in his Beginners Introduction to Object-Oriented Programming with Perl article</a></li>
-            <li><a target="_blank" href="http://hanekomu.at/blog/articles/20080924-1137-dissecting_the_moose.html">Marcel (hanekomu) Gr&uuml;nauer explores Moose in a series of articles</a></li>
-            <li><a target="_blank" href="http://www.slideshare.net/Tim.Bunce/perl-myths-200802-with-notes/">Tim Bunce's excellent Perl Myths talk gives a shout out to Moose</a></li>
-            <li><a target="_blank" href="http://trombik.mine.nu/~cherry/w/index.php/2008/03/22/1202/oop-with-moose">trombik writes an introduction to Moose in Japanese</a></li>
-            <li><a target="_blank" href="http://draegtun.wordpress.com/2008/03/12/doodling-with-moose-part-1/">Barry Walsh does an excellent comparison of Moose and Ruby (specifically the Doodle module)</a></li>
-        </ul>
-        </li>
-
-
-        <li class="list_sub_header">2007 Articles</li>
-        <ul>
-            <li><a target="_blank" href="http://blog.jrock.us/articles/Myth:%20Moose%20is%20an%20unnecessary%20dependency.pod">Jonathan Rockway discusses why Moose is a dependency worth having</a></li>
-            <li><a target="_blank" href="http://avatraxiom.livejournal.com/70947.html">Max Kanat-Alexander (of Bugzilla fame) has some nice things to say about Moose</a></li>
-            <li><a target="_blank" href="http://www.perl.com/pub/a/2007/12/06/soto-11.html?page=3">Larry mentioned Moose in 2007's State of the Onion speech</a></li>
-            <li>Matt Trout (of DBIx::Class and Catalyst fame) wrote a nice series of articles on designing Devel::REPL using Moose.</li>
-            <ul>
-                <li><a target="_blank" href="http://chainsawblues.vox.com/library/post/a-perl-read-excute-print-loop-repl.html">Writing a perl read-eval-print loop (REPL) - part 1</a></li>
-                <li><a target="_blank" href="http://chainsawblues.vox.com/library/post/writing-a-perl-read-eval-print-loop-repl---part-2.html">Writing a perl REPL part 2 - a history plugin</a></li>
-                <li><a target="_blank" href="http://chainsawblues.vox.com/library/post/writing-a-perl-repl-part-3---lexical-environments.html">Writing a perl REPL part 3 - lexical environments</a></li>
-                <li><a target="_blank" href="http://chainsawblues.vox.com/library/post/develrepl-part-4---script-options-rc-files-profiles-and-packaging.html">Devel::REPL part 4 - script options, rc files and profiles</a></li>
-            </ul>
-            <li><a target="_blank" href="http://foo-magazin.de/#d18">$foo Perl Magazine Winter 2007 has a Moose article</a></li>
-            <li>Randal Schwartz wrote a series of articles on Moose for Linux Magazine</li>
-            <ul>
-                <li><a target="_blank" href="http://www.stonehenge.com/merlyn/LinuxMag/col94.html">The Moose is Flying (part 1) (LinuxMag)</a></li>
-                <li><a target="_blank" href="http://www.stonehenge.com/merlyn/LinuxMag/col95.html">The Moose is Flying (part 2) (LinuxMag)</a></li>
-            </ul>
-        </ul>
-        </li>
-
-        <li class="list_sub_header">2006 Articles</li>
-        <ul>
-            <li><a target="_blank" href="http://www.oreillynet.com/onlamp/blog/2006/06/cpan_module_review_classmop.html">Class::MOP Review (OnLAMP)</a></li>
-        </ul>
-        </li>
-
-    </ul>
-
-    <li><a class="list_header" onfocus="this.blur()" href="javascript:void(0)" onclick="show_section('presentations')">Presentations</a></li>
-    <ul class="sub_list" id="presentations">
-
-         <li class="list_sub_header">2009 Conferences</li>
-         <ul>
-            <li><a target="_blank" href="http://sartak.org/talks/frozen-perl-2009/moose/">Shawn M Moore's Intro to Moose at Frozen Perl</a></li>
-            <li><a target="_blank" href="http://yapc10.org/yn2009/talk/2047">Dave Rolsky's Introduction to Moose master class at YAPC::NA 2009 (delivered by Shawn Moore and Jonathan Rockway)</a></li>
-            <li><a target="_blank" href="http://yapc10.org/yn2009/talk/1967">Devin Austin's Intro to Moose at YAPC::NA 2009</a></li>
-            <li><a target="_blank" href="http://sartak.org/talks/yapc-na-2009/extending-moose/">Shawn Moore's Extending Moose for Applications at YAPC::NA 2009</a></li>
-            <li><a target="_blank" href="http://yapc10.org/yn2009/talk/1941">Stevan Little's To Moose or Not To Moose at YAPC::NA 2009</a></li>
-            <li><a target="_blank" href="http://yapc10.org/yn2009/talk/1984">Hans Dieter Pearcey's Code Reuse with Moose at YAPC::NA 2009</a></li>
-            <li><a target="_blank" href="http://www.onemogin.com/blog/stuff/talks/moose/MooseForManagers.pdf">Cory Watson's Moose for Managers at YAPC::NA 2009</a></li>
-            <li><a target="_blank" href="http://yapceurope2009.org/ye2009/talk/2096">Yuval Kogman's Meta Moose at YAPC::EU 2009</a></li>
-            <li><a target="_blank" href="http://yapceurope2009.org/ye2009/talk/2273">Yuval Kogman's Moose Workshop at YAPC::EU 2009</a></li>
-            <li><a target="_blank" href="http://conferences.yapcasia.org/ya2009/talk/2192">Shawn Moore's Moose master class at YAPC::Asia 2009</a></li>
-            <li><a target="_blank" href="http://conferences.yapceurope.org/ipw2009/talk/2371">Mike Whitaker's Introduction to Moose at the Italian Perl Workshop</a></li>
-            <li><a target="_blank" href="http://lumberjaph.net/~franck/stuff/Introduction_a_Moose.pdf">franck cuny's Introduction to Moose at the France OSDC</a></li>
-            <li><a target="_blank" href="http://www.perlworkshop.no/npw2009/talk/1901">Yuval Kogman's Why Moose at the Nordic Perl Workshop</a></li>
-            <li><a target="_blank" href="http://perloasis.org/opw2009/talk/1702">Cory Watson's Moose for Managers at the Perl Oasis</a></li>
-            <li><a target="_blank" href="http://perloasis.org/opw2009/talk/1701">Mike Whitaker's Building a Moose Class at the Perl Oasis</a></li>
-        </ul>
-        </li>
-
-        <li class="list_sub_header">2008 Conferences</li>
-        <ul>
-       <li><a target="_blank" href="hosted-presentations/2008/sunnavy-Beijing-Perl-Workshop.pdf">sunnavy's Moose talk at Beijing Perl Workshop</a></li>
-       <li><a target="_blank" href="hosted-presentations/2008/stevan-PPW/moose.xul">Stevan Little's Moose talk at Pittsburgh Perl Workshop</a></li>
-       <li><a target="_blank" href="hosted-presentations/2008/stevan-PPW/moose-manager.xul">Stevan Little's Manager's Guide to Moose at Pittsburgh Perl Workshop</a></li>
-        <li><a target="_blank" href="hosted-presentations/2008/stevan-OSCON/moose.xul">Stevan Little's Moose talk at OSCON</a></li>
-        <li><a target="_blank" href="hosted-presentations/2008/nothingmuch-NPW/practical_moose.html">Yuval Kogman's Practical Moose at Nordic Perl Workshop</a></li>
-        <li><a target="_blank" href="http://conferences.yapcasia.org/ya2008/talk/1017">Yuval Kogman's Practical Moose at YAPC::Asia (video)</a> <a href="hosted-presentations/2008/nothingmuch-YAPC-Asia/practical_moose.html">(slides)</a></li>
-        <li><a target="_blank" href="hosted-presentations/2008/stevan-YAPC-NA.pdf">Stevan Litt;e's Moose talk at YAPC::NA</a></li>
-        <li><a target="_blank" href="hosted-presentations/2008/nothingmuch-PTPW/practical_moose.html">Yuval Kogman's Practical Moose at Portuguese Perl Workshop</a></li>
-
-        </ul>
-
-        <li class="list_sub_header">2007 Conferences</li>
-        <ul>
-        <li><a target="_blank" href="hosted-presentations/2007/stevan-PPW/roles.xul">Stevan Little's Horizontal Reuse with Moose::Role at Pittsburgh Perl Workshop</a></li>
-        <li><a target="_blank" href="ppw_moose_slides/start.html">Stevan Little's Moose talk at Pittsburgh Perl Workshop</a></li>
-        <li><a target="_blank" href="hosted-presentations/2007/nothingmuch-YAPC-EU">Yuval Kogman's Object Meta Programming at YAPC::EU</a></li>
-        <li><a target="_blank" href="yapc_eu_2007_slides/start.html">Stevan Little's Moose talk at YAPC::EU</a></li>
-        </ul>
-
-        <li class="list_sub_header">2006 Conferences</li>
-        <ul>
-        <li><a target="_blank" href="http://utsl.gen.nz/talks/moose/start.html">Sam Vilain's Moose talk at OSDC Melbourne</a></li>
-        <li><a target="_blank" href="slides/start.html">Stevan Little's Moose talk at YAPC::NA</a></li>
-        </ul>
-
-        <li class="list_sub_header">Perl Mongers Groups</li>
-        <ul>
-        <li><a target="_blank" href="http://www.slideshare.net/Ovid/refactoring-with-roles-1298185">Ovid's Refactoring with Roles at London.pm</a></li>
-        <li><a target="_blank" href="http://www.weftsoar.net/~hdp/talk/meta-moose/slides/start.html">Hans Dieter Pearcey's Meta-Moose at PDX.pm</a></li>
-        <li><a target="_blank" href="http://www.bofh.org.uk/2009/05/13/london-pm-presentation">Piers Cawley's MooseX::Declare talk at London.pm (video)</a></li>
-        <li><a target="_blank" href="http://www.slideshare.net/dtreder/moose-527243">Doug Treder's Moose talk at Seattle Perl Users Group</a></li>
-        <li><a target="_blank" href="http://www.slideshare.net/hakobe/moose">hakobe's Moose presentation at Kansai.pm</a></li>
-        <li><a target="_blank" href="hosted-presentations/2008/notbenh-PDX.xul">Ben Hengst's Moose talk at PDX.pm</a> (<a target="_blank" href="http://pdxpm.podasp.com/archive.html">podcast</a>)</li>
-        <li><a target="_blank" href="http://chris.prather.org/talks/moose-intro-mpls/">Chris Prather's An Intro to Moose at Minneapolis Perl Mongers</a>
-        <li><a target="_blank" href="http://houston.pm.org/talks/2007talks/0704Talk/slides/start.html">Robert Boone's Moose talk at Houston.pm</a></li>
-        <li><a target="_blank" href="perl_ny_seminar_slides/start.html">Stevan Little's Moose talk at Perl Seminar, NY</a></li>
-        </ul>
-
-    </ul>
-
-    <li><a class="list_header" onfocus="this.blur()" href="javascript:void(0)" onclick="show_section('misc')">Misc.</a></li>
-    <ul class="sub_list" id="misc">
-
-        <li><a target="_blank" href="http://www.ohloh.net/projects/moose">Moose on Ohloh</a></li>
-        <li><a target="_blank" href="http://flickr.com/search/?w=all&q=moose+yapcna2006&m=tags">Moose@YAPC on Flickr</a></li>
-        <li><a target="_blank" href="http://www.perlmonks.org/index.pl?node_id=610130">Moose Poetry on PerlMonks</a></li>
-        <li><a target="_blank" href="images/class_mop_model.jpg">Class::MOP object model diagram</a></li>
-
-    </ul>
-</ul>
-</p>
-<br/>
-<br/>
-</div>
-
-<table width="100%" cellspacing="0" cellpadding="0" border="0"><tr>
-    <td><img src="images/bottom_left.jpg" alt="" width="21" height="21" border="0" /></td>
-    <td align="right"><img src="images/bottom_right.jpg" alt="" width="21" height="21" border="0" /></td>
-</tr></table>
-
-</td>
-</tr>
-<tr>
-<td>
-    <br/>
-    <p class="copyright">
-    Copyright &copy; 2006 - 2008 Infinity Interactive
-    <br/><br/>
-    This library is free software; you can redistribute it <br/>
-    and/or modify it under the same terms as Perl itself.
-    </p>
-    <br/>
-    <br/>
-    <br/>
-</td>
-</tr>
-</table>
-</body>
-</html>
-