On 10/24/06, Matt Raible <[EMAIL PROTECTED]> wrote:
As far as an RC5, I'm fine with that, or just fixing it in SVN and letting me try again. ;-)
I'll fix it in SVN for now. I'd like to get more feedback before rolling another RC.
Also, it'd be nice if andreas08 worked out-of-the-box, since it's a new theme and all. I'd hate for folks to try it and it not work w/o modifying properties.
We're not shipping Andreas08 with Roller. We decided that (my port of) Andreas08 had enough glitches that it shouldn't be one of the chosen 3 that we include. The Andreas08 theme available from the Roller Support project should work right out of the box as it uses the new macros. You can get it here: <https://roller.dev.java.net/servlets/ProjectDocumentList?folderID=5956&expandFolder=5956&folderID=0> AKA <http://tinyurl.com/ylyc7m> - Dave
Matt On 10/24/06, Dave <[EMAIL PROTECTED]> wrote: > On 10/23/06, Dave <[EMAIL PROTECTED]> wrote: > > The problem: > > java.lang.NullPointerException > > org.apache.roller.ui.rendering.servlets.PageServlet.doGet(PageServlet.java:168) > > > > Looks like a 3.0 bug, your website is has a null lastmodified date. > > You can work around the problem by setting lastmodified date to some > > non null value, perhaps now() would work. > > The root problem is that we create the new lastmodified column with > default to null. > > alter table website add column lastmodified $TIMESTAMP_SQL_TYPE default null; > > What we ought to do is to set the default to now() like so: > > alter table website add column lastmodified $TIMESTAMP_SQL_TYPE default now(); > > So we need an RC5. Does anybody else have Roller 3.0 RC4 feedback? > > - Dave > -- Blog @ http://raibledesigns.com Founder of AppFuse @ http://appfuse.org
