[Jifty-commit] r486 - wifty/trunk/etc wifty/trunk/lib/Wifty/Model

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Sun Jan 8 10:35:09 EST 2006


Author: jesse
Date: Sun Jan  8 10:35:09 2006
New Revision: 486

Modified:
   /   (props changed)
   wifty/trunk/Makefile.PL
   wifty/trunk/etc/config.yml
   wifty/trunk/lib/Wifty/Model/Page.pm
   wifty/trunk/lib/Wifty/Model/Revision.pm

Log:
 r22215 at truegrounds:  jesse | 2006-01-08 16:33:07 +0100
 * Switch to SQLite for testing purposes
 * Turn off Log4Perl
 * Comment out 'by' column since SQLite treats it as reserved
 


Modified: wifty/trunk/Makefile.PL
==============================================================================
--- wifty/trunk/Makefile.PL	(original)
+++ wifty/trunk/Makefile.PL	Sun Jan  8 10:35:09 2006
@@ -2,5 +2,6 @@
 name('Wifty');
 version('0.01');
 requires('Jifty');
-
+requires('Text::Markdown');
+requires('HTML::Scrubber');
 WriteAll;

Modified: wifty/trunk/etc/config.yml
==============================================================================
--- wifty/trunk/etc/config.yml	(original)
+++ wifty/trunk/etc/config.yml	Sun Jan  8 10:35:09 2006
@@ -1,13 +1,14 @@
 framework:
   AdminMode: 0
   ApplicationName: Wifty
-  LogConfig: etc/log4perl.conf
+  #LogConfig: etc/log4perl.conf
 
   Web:
     Port: 80
     BaseURL: http://jifty.org
   Database:
-    Driver: Pg
+  #  Driver: Pg
+    Driver: SQLite
     Host: localhost
     User: postgres
     Version: 0.0.19

Modified: wifty/trunk/lib/Wifty/Model/Page.pm
==============================================================================
--- wifty/trunk/lib/Wifty/Model/Page.pm	(original)
+++ wifty/trunk/lib/Wifty/Model/Page.pm	Sun Jan  8 10:35:09 2006
@@ -98,7 +98,7 @@
     $rev->create(
         page    => $self->id,
         content => $args{'content'},
-        by      => $args{'updated_by'}
+        # by      => $args{'updated_by'}
     );
 
 }

Modified: wifty/trunk/lib/Wifty/Model/Revision.pm
==============================================================================
--- wifty/trunk/lib/Wifty/Model/Revision.pm	(original)
+++ wifty/trunk/lib/Wifty/Model/Revision.pm	Sun Jan  8 10:35:09 2006
@@ -7,7 +7,7 @@
 
 column created => type is 'timestamp';
 
-column by => refers_to Wifty::Model::User, since '0.0.18';
+#column by => refers_to Wifty::Model::User, since '0.0.18';
 
 
 package Wifty::Model::Revision;


More information about the Jifty-commit mailing list