add some more slies on object construction, make ol and li style the same
Dave Rolsky [Tue, 23 Jun 2009 21:14:22 +0000 (16:14 -0500)]
moose-class/slides/index.html
moose-class/slides/ui/custom.css

index e549346..4dca048 100644 (file)
@@ -925,6 +925,30 @@ sub BUILD {
 </div>
 
 <div class="slide">
+  <h1>Object Construction a la Moose</h1>
+
+  <pre><code>Person-&gt;new(@_)</code></pre>
+
+  <ol>
+    <li>Calls <code>Person-&gt;BUILDARGS(@_)</code> to turn <code>@_</code> into a hashref</li>
+    <li>Blesses a reference</li>
+    <li>Populates attributes based on the hashref from #1</li>
+    <li>Calls <code>$new_object->BUILDALL($constructor_args)</code>
+        <br />... which calls all <code>BUILD</code> methods</li>    
+    <li>Returns the object</li>
+  </ol>
+</div>
+
+<div class="slide">
+  <h1>The Object is Oqaque</h1>
+
+  <ul>
+    <li>Technically it's a hash reference</li>
+    <li><span class="wrong">If you <em>ever</em> treat it as one <strong>you are doing it wrong!</strong></span></li>
+  </ul>
+</div>
+
+<div class="slide">
   <h1>DEMOLISH</h1>
 
   <ul>
index 0651329..9a3ac6a 100644 (file)
@@ -49,7 +49,10 @@ img.for-slide {
     float: right;
 }
 
-.slide ul, .slide ul li ul {
+/* copied from pretty.css for ul */
+.slide ol {margin-left: 5%; margin-right: 7%;}
+
+.slide ul, .slide ul li ul, .slide ol {
     line-height: 1.2em;
 }