Cleanup
[sdlgit/SDL-Site.git] / pages / SDL-Tutorial.html-inc
index 5b8e725..256fb70 100644 (file)
@@ -7,6 +7,7 @@
 </ul>
 </li>
 <li><a href="#SYNOPSIS">SYNOPSIS</a></li>
+<li><a href="#SDL_Manual">SDL Manual</a></li>
 <li><a href="#SDL_BASICS">SDL BASICS</a>
 <ul><li><a href="#Surfaces">Surfaces</a></li>
 <li><a href="#Initialization">Initialization</a></li>
@@ -14,7 +15,7 @@
 </ul>
 </li>
 <li><a href="#SEE_ALSO">SEE ALSO</a></li>
-<li><a href="#AUTHOR">AUTHOR</a></li>
+<li><a href="#AUTHORS">AUTHORS</a></li>
 <li><a href="#COPYRIGHT">COPYRIGHT</a>
 </li>
 </ul><hr />
 </pre>
 
 </div>
+<h1 id="SDL_Manual">SDL Manual</h1><p><a href="#TOP" class="toplink">Top</a></p>
+<div id="SDL_Manual_CONTENT">
+<p><code>SDL::Tutorial</code> are incomplete and old. A new book has been started to provide 
+a complete tutorial for SDL. See <a href="http://bit.ly/hvxc9V">http://bit.ly/hvxc9V</a>.</p>
+
+</div>
 <h1 id="SDL_BASICS">SDL BASICS</h1><p><a href="#TOP" class="toplink">Top</a></p>
 <div id="SDL_BASICS_CONTENT">
 <p>SDL, the Simple DirectMedia Layer, is a cross-platform multimedia library.
@@ -53,7 +60,7 @@ though.  Here's how to get up and running as quickly as possible.</p>
 <h2 id="Surfaces">Surfaces</h2>
 <div id="Surfaces_CONTENT">
 <p>All graphics in SDL live on a surface.  You'll need at least one.  That's what
-<a href="http://search.cpan.org/perldoc?SDLx::App">SDLx::App</a> provides.</p>
+<a href="SDLx-App.html">SDLx::App</a> provides.</p>
 <p>Of course, before you can get a surface, you need to initialize your video
 mode.  SDL gives you several options, including whether to run in a window or
 take over the full screen, the size of the window, the bit depth of your
@@ -68,27 +75,27 @@ ask for a windowed surface with 640x480x16 resolution:</p>
 <pre>  use SDLx::App;
 
        my $app = SDLx::App-&gt;new(
-               -width  =&gt; 640,
-               -height =&gt; 480,
-               -depth  =&gt; 16,
+               width  =&gt; 640,
+               height =&gt; 480,
+               depth  =&gt; 16,
        );
 
 </pre>
-<p>You can get more creative, especially if you use the <code>-title</code> and <code>-icon</code>
+<p>You can get more creative, especially if you use the <code>title</code> and <code>icon</code>
 attributes in a windowed application.  Here's how to set the window title of
 the application to <code>My SDL Program</code>:</p>
 <pre>  use SDLx::App;
 
        my $app = SDLx::App-&gt;new(
-               -height =&gt; 640,
-               -width  =&gt; 480,
-               -depth  =&gt; 16,
-               -title  =&gt; 'My SDL Program',
+               height =&gt; 640,
+               width  =&gt; 480,
+               depth  =&gt; 16,
+               title  =&gt; 'My SDL Program',
        );
 
 </pre>
 <p>Setting an icon is a little more involved -- you have to load an image onto a
-surface.  That's a bit more complicated, but see the <code>-name</code> parameter to
+surface.  That's a bit more complicated, but see the <code>name</code> parameter to
 <code>SDL::Surface-</code>new()&gt; if you want to skip ahead.</p>
 
 </div>
@@ -106,7 +113,7 @@ them there, then <code>update</code> the <code>$app</code>.</p>
 <h1 id="SEE_ALSO">SEE ALSO</h1><p><a href="#TOP" class="toplink">Top</a></p>
 <div id="SEE_ALSO_CONTENT">
 <dl>
-       <dt><a href="SDL-Animation.html">SDL::Animation</a></dt>
+       <dt><a href="SDL-Tutorial-Animation.html">SDL::Tutorial::Animation</a></dt>
        <dd>
                <p>basic rectangle drawing and animation</p>
        </dd>
@@ -117,12 +124,10 @@ them there, then <code>update</code> the <code>$app</code>.</p>
 </dl>
 
 </div>
-<h1 id="AUTHOR">AUTHOR</h1><p><a href="#TOP" class="toplink">Top</a></p>
-<div id="AUTHOR_CONTENT">
+<h1 id="AUTHORS">AUTHORS</h1><p><a href="#TOP" class="toplink">Top</a></p>
+<div id="AUTHORS_CONTENT">
 <p>chromatic, &lt;chromatic@wgz.org&gt;. </p>
-<p>nelson ferraz, &lt;nferraz@cpan.org&gt;. </p>
-<p>Updated by kthakore and garu.</p>
-<p>Written for and maintained by the Perl SDL project, <a href="http://sdl.perl.org/">http://sdl.perl.org/</a>.</p>
+<p>Written for and maintained by the Perl SDL project, <a href="http://sdl.perl.org/">http://sdl.perl.org/</a>. See <a href="/SDL.html#AUTHORS">/SDL.html#AUTHORS</a> for details.</p>
 
 </div>
 <h1 id="COPYRIGHT">COPYRIGHT</h1><p><a href="#TOP" class="toplink">Top</a></p>