Return-Path: Delivered-To: apmail-roller-user-archive@www.apache.org Received: (qmail 3700 invoked from network); 20 Dec 2007 03:02:57 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Dec 2007 03:02:57 -0000 Received: (qmail 46546 invoked by uid 500); 20 Dec 2007 03:02:45 -0000 Delivered-To: apmail-roller-user-archive@roller.apache.org Received: (qmail 46520 invoked by uid 500); 20 Dec 2007 03:02:45 -0000 Mailing-List: contact user-help@roller.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user@roller.apache.org Delivered-To: mailing list user@roller.apache.org Received: (qmail 46511 invoked by uid 99); 20 Dec 2007 03:02:45 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Dec 2007 19:02:45 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of snoopdave@gmail.com designates 64.233.178.247 as permitted sender) Received: from [64.233.178.247] (HELO hs-out-2122.google.com) (64.233.178.247) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 20 Dec 2007 03:02:24 +0000 Received: by hs-out-2122.google.com with SMTP id 4so3362077hsl.13 for ; Wed, 19 Dec 2007 19:02:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=tYw8HIO4WthG3PvjTdO5BhL6SJpY+Wl78B+OhRyClAk=; b=AzTN1MiVoSKk0NFnMQq/V55PYsoZvQww5Wf3OhHYOnXnx1CzXEVZ7UKOQedak/o30WAws0vKAsj/r4w2PvgBlZ3zgSbrojX5lwPigNYduWSV9fkpXc7kf24/qCUddaY8l1XslyE43hxFkb4inQAipP578ghPaFrwvKWaflvWOZc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=xwmOKh07D+g1jhGIUmXNVfw+HWLLJ80zqhBe8T3c+QwUy92xkYaRAwRrcViVbxp6n6xpjFdAJR/rA0DAOdR1haHwxNSdv+4/v3jUg1sjMdTjUJQqPK/XBjYV0K6CjC9u0NAhKfDDe7W84kDODFBLQvQc6jLG+L9G6fXBDaG/YGY= Received: by 10.150.185.14 with SMTP id i14mr1449608ybf.19.1198119746706; Wed, 19 Dec 2007 19:02:26 -0800 (PST) Received: by 10.150.54.7 with HTTP; Wed, 19 Dec 2007 19:02:26 -0800 (PST) Message-ID: <8fb9ac720712191902h6c3d7188kb4fdbea178e31a82@mail.gmail.com> Date: Wed, 19 Dec 2007 22:02:26 -0500 From: Dave To: user@roller.apache.org Subject: Re: Roller Planet startup failed during app preparation (works) In-Reply-To: <001e01c8427b$fdfce880$9a0a12ac@langanj> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4766F4B9.4070700@aspix.it> <001e01c8427b$fdfce880$9a0a12ac@langanj> X-Virus-Checked: Checked by ClamAV on apache.org On Dec 19, 2007 3:15 PM, John Langan wrote: > I edited Weblog.vm of the front page to be > ## 1) SITE-WIDE entries (the default) > ##set($pager = $site.getWeblogEntriesPager($since, $maxResults)) > ## 2) PLANET-entries > # set($pager = $planet.getAggregationPager($since, $maxResults)) > > All I get displayed on the front page under the Recent Entries tab is > # set($pager = > org.apache.roller.weblogger.ui.rendering.pagers.PlanetEntriesPager@1fd1c3a) > > What should I see there? Any ideas on what has gone wrong? Remove that space between # and the word "set". The line should look like this: #set($pager = $planet.getAggregationPager($since, $maxResults)) - Dave