Acme-CreatingCPANModules
view release on metacpan or search on metacpan
slides/index.html view on Meta::CPAN
}
#logo {
position: fixed;
right: 40px;
bottom: 51px;
width: 130px;
height: 150px;
z-index:3;
background-image: url(/logo.png);
background-repeat: no-repeat;
}
/* END index.css */
--></style>
<script type="text/javascript">
// BEGIN controls.js
function nextSlide() {
window.location = 'start.html';
}
function prevSlide() {
window.location = '';
}
function indexSlide() {
window.location = 'index.html';
}
function startSlide() {
window.location = 'start.html';
}
function closeSlide() {
window.close();
}
function handleKey(e) {
var key;
if (e == null) {
// IE
key = event.keyCode
}
else {
// Mozilla
if (e.altKey || e.ctrlKey) {
return true
}
key = e.which
}
switch(key) {
case 8: prevSlide(); break
case 13: nextSlide(); break
case 32: nextSlide(); break
case 81: closeSlide(); break
case 105: indexSlide(); break
case 110: nextSlide(); break
case 112: prevSlide(); break
case 115: startSlide(); break
default: //xxx(e.which)
}
}
document.onkeypress = handleKey
// END controls.js
</script>
</head>
<body>
<div id="topbar">
<table width='100%'>
<tr>
<td width="13%">CPAN</td>
<td align="center" width="73%">
<a accesskey="s" href="start.html">Creating CPAN modules</a>
</td>
<td align="right" width="13%">
</td>
</tr>
</table>
</div>
<!-- END top -->
<div id="content">
<div class="top_spacer"></div>
<ol>
<li><a href="slide1.html"></a></li>
<li><a href="slide2.html">And now we're going to create a CPAN module</a></li>
<li><a href="slide3a.html">We assume you're here because...</a></li>
<li><a href="slide4.html">And now we'll start...</a></li>
<li><a href="slide5a.html">With Module::Starter</a></li>
<li><a href="slide6.html"></a></li>
<li><a href="slide7a.html"></a></li>
<li><a href="slide8a.html"></a></li>
<li><a href="slide9.html">Changes</a></li>
<li><a href="slide10.html">MANIFEST</a></li>
<li><a href="slide11.html">Makefile.PL</a></li>
<li><a href="slide12.html">README</a></li>
<li><a href="slide13.html">lib/Acme/CreatingCPANModules.pm</a></li>
<li><a href="slide14.html">t/00-load.t</a></li>
<li><a href="slide15.html">t/boilerplate.t</a></li>
<li><a href="slide16.html">t/pod-coverage.t</a></li>
<li><a href="slide17.html">t/pod.t</a></li>
<li><a href="slide18.html"></a></li>
<li><a href="slide19.html">I want to see that by myself!</a></li>
<li><a href="slide20.html">Things we didn't cover</a></li>
<li><a href="slide21.html">Links:</a></li>
<li><a href="slide22.html">Thank you</a></li>
</ol>
</div>
<!-- BEGIN bottom -->
<div id="bottombar">
<table width="100%">
<tr>
<td align="left" valign="middle">
<div style="display:none">
<a accesskey='p' href="">< < Previous</a> |
<a accesskey='i' href="">Index</a> |
<a accesskey='n' href="start.html">Next >></a>
( run in 0.876 second using v1.01-cache-2.11-cpan-140bd7fdf52 )