Btw, I created a page using the Codex instructions Displaying Posts using a Custom Select Query That would display the full posts of subpages for a page.
Here’s the code, if anyone’s interested.
<?php
/*
Template Name: Parent Page
This page displays current page entry and the full posts of all subpage entries.
It was created for use with documentation where you have outline-type docs with subsections.
*/
?>
<?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : while (have_posts()) : the_post();
?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php the_title(); ?> </h2>
<?php edit_post_link('Edit', '<small>', '</small>'); ?>
<?php
$querystr = "SELECT wposts.* ".
"FROM $wpdb->posts wposts ".
"WHERE wposts.post_status = 'publish' ".
"AND wposts.post_type = 'page' ".
"AND wposts.post_parent = '". $id ."' ".
"ORDER BY wposts.menu_order ASC";
$pageposts = $wpdb->get_results($querystr, OBJECT);
?>
<?php if ($pageposts): ?>
<?php foreach ($pageposts as $post): ?>
<?php setup_postdata($post); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
<?php the_title(); ?></a></h3>
<small><?php the_time('F jS, Y') ?> <?php edit_post_link('Edit', '', ''); ?><!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content('Read the rest of this entry ?'); ?>
</div>
</div>
<?php endforeach; ?>
<?php else : ?>
<h2 class="center">Not Found</h2>
<p class="center">Sorry, but you are looking for something that isn't here.</p>
<?php include (TEMPLATEPATH . "/searchform.php"); ?>
<?php endif; ?>
</div>
<?php endwhile; endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>